mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
ci: in-depth test workflow
This commit is contained in:
parent
13ef05f8a2
commit
041ce78bce
2 changed files with 9 additions and 5 deletions
1
.github/workflows/lua.yml
vendored
1
.github/workflows/lua.yml
vendored
|
@ -3,7 +3,6 @@ name: lua
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- stable
|
||||
|
||||
permissions:
|
||||
|
|
13
.github/workflows/test.yml
vendored
13
.github/workflows/test.yml
vendored
|
@ -14,20 +14,25 @@ permissions:
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.runner }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
runner:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
- macos-latest
|
||||
features:
|
||||
- rust
|
||||
- luajit # should we test with lua54 instead?
|
||||
- luajit
|
||||
- lua54
|
||||
- java
|
||||
- js
|
||||
- py
|
||||
toolchain:
|
||||
- stable
|
||||
# - beta
|
||||
# - nightly
|
||||
# TODO should re-enable future toolchains so we get warnings on breaking changes
|
||||
- beta
|
||||
- nightly
|
||||
steps:
|
||||
- uses: arduino/setup-protoc@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue