Skip to content

feat: Extract proper registry data from vanilla datapack (#195) #342

feat: Extract proper registry data from vanilla datapack (#195)

feat: Extract proper registry data from vanilla datapack (#195) #342

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)"