Skip to content

chore(release): 2.1.5 #72

chore(release): 2.1.5

chore(release): 2.1.5 #72

Workflow file for this run

name: tests

Check failure on line 1 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

(Line: 14, Col: 13): Job 'tests-complete' depends on unknown job 'tests'.
on:
workflow_call:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
uses: brickhouse-tech/.github/.github/workflows/tests.yml@main
tests-complete:
name: tests
needs: [tests]
runs-on: ubuntu-latest
if: always()
steps:
- name: Check test results
run: |
if [[ "${{ needs.tests.result }}" != "success" ]]; then
echo "Tests failed"
exit 1
fi
echo "All tests passed"