mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
16 lines
295 B
YAML
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
|
|
...
|