Skip to content

Commit 438f467

Browse files
authored
Create test.yml
1 parent 87b1a49 commit 438f467

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: test
2+
on:
3+
push:
4+
branches:
5+
- master
6+
tags:
7+
- "*"
8+
pull_request:
9+
branches:
10+
- master
11+
jobs:
12+
test:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
include:
17+
- { os: ubuntu-20.04, platform: linux-x64 }
18+
- { os: macos-latest, platform: darwin-x64 }
19+
- { os: macos-latest, platform: darwin-arm64 }
20+
- { os: windows-latest, platform: win32-ia32 }
21+
- { os: windows-latest, platform: win32-x64 }
22+
runs-on: ${{ matrix.os }}
23+
steps:
24+
- uses: actions/checkout@v4
25+
with:
26+
submodules: recursive
27+
- uses: actboy168/setup-luamake@master
28+
- run: luamake -platform ${{ matrix.platform }}

0 commit comments

Comments
 (0)