Bump actions/checkout from 4.2.0 to 4.2.2 #471
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: # {branches: [main]} | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: ingy/exercism-yamlscript-test-runner:0.1.80 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Touch all | |
run: find * -type f | xargs touch | |
- name: Run checks and tests | |
run: EXERCISM_YAMLSCRIPT_GHA=1 make check |