Skip to content

Merge pull request #13 from manuelruiz34/manuel-ruiz #26

Merge pull request #13 from manuelruiz34/manuel-ruiz

Merge pull request #13 from manuelruiz34/manuel-ruiz #26

Workflow file for this run

name: check
on: push
# 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"'