zdoom-macos-deps/.github/workflows/test.yml
2022-07-02 11:01:25 +03:00

16 lines
295 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@v1
- name: Run tests
run: |
./build.py --target=test-deps
...