zdoom-macos-deps/.github/workflows/test.yml

25 lines
399 B
YAML
Raw Normal View History

2022-07-02 08:01:25 +00:00
---
2020-12-26 10:05:07 +00:00
name: Test Libraries
on:
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
2020-12-26 10:05:07 +00:00
jobs:
2021-08-05 07:10:51 +00:00
test:
2022-07-02 08:02:25 +00:00
if: "!contains(github.event.head_commit.message, '[skip test]')"
runs-on: macos-13
2020-12-26 10:05:07 +00:00
steps:
- uses: actions/checkout@v4
2022-07-02 08:01:25 +00:00
- name: Run tests
run: |
./build.py --target=test-deps
...