Skip to content

Unify GitHub App and GitHub Action as we don't have a clear winner ye… #25

Unify GitHub App and GitHub Action as we don't have a clear winner ye…

Unify GitHub App and GitHub Action as we don't have a clear winner ye… #25

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; }