diff options
author | Li Jin <dragon-fly@qq.com> | 2021-02-23 15:34:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 15:34:58 +0800 |
commit | fba0e92eef2f49f7318d7a18e3e6b7b04d16de80 (patch) | |
tree | 5596d1e2357671a67ba38e8230f11084f9947906 /.github/workflows/macos.yml | |
parent | c4808bbc204957ff5f0aba1e27ddf12251347e7c (diff) | |
download | yuescript-fba0e92eef2f49f7318d7a18e3e6b7b04d16de80.tar.gz yuescript-fba0e92eef2f49f7318d7a18e3e6b7b04d16de80.tar.bz2 yuescript-fba0e92eef2f49f7318d7a18e3e6b7b04d16de80.zip |
Update and rename ccpp.yml to macos.yml
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/macos.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..c0dabf6 --- /dev/null +++ b/.github/workflows/macos.yml | |||
@@ -0,0 +1,17 @@ | |||
1 | name: macOS | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ master ] | ||
6 | pull_request: | ||
7 | branches: [ master ] | ||
8 | workflow_dispatch: | ||
9 | |||
10 | jobs: | ||
11 | build: | ||
12 | name: Build & Test | ||
13 | runs-on: macos-latest | ||
14 | steps: | ||
15 | - uses: actions/checkout@v1 | ||
16 | - name: build-test | ||
17 | run: make test | ||