Skip to content

.github/workflows/build.yml: add git to the acdh image variant #72

.github/workflows/build.yml: add git to the acdh image variant

.github/workflows/build.yml: add git to the acdh image variant #72

Workflow file for this run

name: test
on:
push: ~
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
#- 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