diff options
-rw-r--r-- | .github/workflows/macos.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 75b4067..f5cbcc8 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml | |||
@@ -12,10 +12,14 @@ jobs: | |||
12 | build: | 12 | build: |
13 | name: Build & Test | 13 | name: Build & Test |
14 | runs-on: macos-latest | 14 | runs-on: macos-latest |
15 | if: "startsWith(github.ref, 'refs/tags/') || !contains(github.event.head_commit.message, '[skip CI]')" | ||
15 | steps: | 16 | steps: |
16 | - uses: actions/checkout@v2 | 17 | - uses: actions/checkout@v2 |
17 | - name: build-test | 18 | - name: build-test |
18 | run: make test | 19 | run: | |
20 | brew install luarocks | ||
21 | luarocks install busted | ||
22 | make test | ||
19 | - name: build for luajit | 23 | - name: build for luajit |
20 | if: startsWith(github.ref, 'refs/tags/') | 24 | if: startsWith(github.ref, 'refs/tags/') |
21 | run: | | 25 | run: | |