mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
18 lines
291 B
YAML
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
|
|
...
|