ci: add quakespasm-exp to build workflow #601
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
./build.py --target=test-deps | |
... |