Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Feb 1, 2024
1 parent 87b1a49 commit 438f467
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: test
on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-20.04, platform: linux-x64 }
- { os: macos-latest, platform: darwin-x64 }
- { os: macos-latest, platform: darwin-arm64 }
- { os: windows-latest, platform: win32-ia32 }
- { os: windows-latest, platform: win32-x64 }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actboy168/setup-luamake@master
- run: luamake -platform ${{ matrix.platform }}

0 comments on commit 438f467

Please sign in to comment.