zdoom-macos-deps/.github/workflows/test.yml
2023-02-04 13:35:16 +02:00

18 lines
291 B
YAML

---
name: Test Libraries
on:
- push
- pull_request
jobs:
test:
if: "!contains(github.event.head_commit.message, '[skip test]')"
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
./build.py --target=test-deps
...