Skip to content

chore(deps): update docker/build-push-action action to v6 (#196) #346

chore(deps): update docker/build-push-action action to v6 (#196)

chore(deps): update docker/build-push-action action to v6 (#196) #346

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install GnuCOBOL
run: "sudo apt-get install -y gnucobol"
- name: Run tests
# By specifying "bash" explicitly, GitHub uses the "-eo pipefail" option.
# See: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
shell: bash
run: "make test | tee test.log; (grep -q \"FAIL\\|ERROR\" test.log && exit 1 || exit 0)"