2022-07-02 08:01:25 +00:00
|
|
|
---
|
2020-12-26 10:05:07 +00:00
|
|
|
name: Test Libraries
|
|
|
|
|
2023-02-04 11:35:16 +00:00
|
|
|
on:
|
2023-10-11 09:46:59 +00:00
|
|
|
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]')"
|
2024-02-03 07:39:02 +00:00
|
|
|
runs-on: macos-13
|
2020-12-26 10:05:07 +00:00
|
|
|
steps:
|
2023-10-11 09:35:13 +00:00
|
|
|
- uses: actions/checkout@v4
|
2020-12-26 10:40:31 +00:00
|
|
|
|
2022-07-02 08:01:25 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
./build.py --target=test-deps
|
|
|
|
...
|