Skip to content

Update valentin-guignon2.yaml #3

Update valentin-guignon2.yaml

Update valentin-guignon2.yaml #3

Workflow file for this run

name: check
on:
push:
paths:
- "trombinoscope/staff/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
yaml_checks:
runs-on: ubuntu-latest
steps:
- name: Get the code
uses: actions/checkout@v2
- name: Install tools
run: 'sudo apt-get install yamllint imagemagick'
- name: Run check scripts
run: 'fail=0;
for p in .github/workflows/check_scripts/*.sh; do
echo "==> $p";
"$p" || fail=1;
done;
exit "$fail"'