mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
24 lines
399 B
YAML
24 lines
399 B
YAML
---
|
|
name: Test Libraries
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.gitignore'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.gitignore'
|
|
|
|
jobs:
|
|
test:
|
|
if: "!contains(github.event.head_commit.message, '[skip test]')"
|
|
runs-on: macos-12
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run tests
|
|
run: |
|
|
./build.py --target=test-deps
|
|
...
|