mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
20 lines
499 B
YAML
20 lines
499 B
YAML
name: Test Libraries
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
|
name: ${{ matrix.config.name }}
|
|
runs-on: "macos-latest"
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Prepare
|
|
run: |
|
|
./build.py --target=clean-deps
|
|
|
|
- name: Run tests
|
|
run: |
|
|
# Remove SDKROOT when 11.0+ SDK will become the default one
|
|
SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk test/test.py
|