Skip to content

Add a workflow test and improve errors (#13) #11

Add a workflow test and improve errors (#13)

Add a workflow test and improve errors (#13) #11

Workflow file for this run

name: Tests
on:
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: ./tests.sh || { echo "::error title=Tests failed::tests.sh returned an error." && exit 1; }