Skip to content

README.md: example fixed #79

README.md: example fixed

README.md: example fixed #79

Workflow file for this run

name: test
on:
push: ~
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
#- uses: mxschmitt/action-tmate@v3
- name: composer
run: composer update --no-dev -o
- name: test
# the filechecker should have non-zero error code
run: |
RET=1
mkdir -p tests/reports && bin/arche-filechecker --tmpDir /tmp tests/data/ tests/reports/ || RET=0
exit $RET