mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-12 23:44:20 +00:00
15 lines
406 B
YAML
15 lines
406 B
YAML
name: Test Libraries
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
runs-on: "macos-10.15"
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run tests
|
|
run: |
|
|
# Remove SDKROOT when 11.0+ SDK will become the default one
|
|
SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk ./build.py --target=test-deps
|