codemp/.github/workflows/test.yml

40 lines
829 B
YAML
Raw Normal View History

name: test
on:
2023-08-16 23:39:50 +02:00
push:
branches:
- dev
env:
2023-08-16 23:39:50 +02:00
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
test:
2023-08-16 23:39:50 +02:00
runs-on: ubuntu-latest
strategy:
2024-08-17 18:48:42 +02:00
fail-fast: false
2023-08-16 23:39:50 +02:00
matrix:
2024-08-17 18:38:37 +02:00
features:
- rust
2024-09-10 14:42:31 +02:00
- luajit # should we test with lua54 instead?
2024-08-17 18:38:37 +02:00
- java
- js
- py
2023-08-16 23:39:50 +02:00
toolchain:
- stable
2023-08-16 23:41:57 +02:00
# - beta
# - nightly
2024-08-17 18:38:37 +02:00
# TODO should re-enable future toolchains so we get warnings on breaking changes
2023-08-16 23:39:50 +02:00
steps:
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
2024-08-17 18:38:37 +02:00
- run: cargo test --verbose --features=${{ matrix.features }}