Skip to content

ci(deps): bump actions/checkout from 5 to 6 #8

ci(deps): bump actions/checkout from 5 to 6

ci(deps): bump actions/checkout from 5 to 6 #8

Workflow file for this run

# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
name: Build
on:
push:
branches-ignore: # build all branches except:
- 'dependabot/**' # prevent GHA triggered twice (once for commit to the branch and once for opening/syncing the PR)
tags-ignore: # don't build tags
- '**'
paths-ignore:
- '**/*.adoc'
- '**/*.md'
- '.editorconfig'
- '.git*'
- '.github/*.yml'
- '.github/workflows/stale.yml'
pull_request:
paths-ignore:
- '**/*.adoc'
- '**/*.md'
- '.editorconfig'
- '.git*'
- '.github/*.yml'
- '.github/workflows/stale.yml'
workflow_dispatch:
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows
defaults:
run:
shell: cmd
jobs:
build:
runs-on: windows-latest
steps:
- name: "Show: environment variables"
run: set
- name: Git Checkout
uses: actions/checkout@v6 # https://github.com/actions/checkout
- name: Run tests
run: call tests/test_all.cmd