26 lines
506 B
YAML
26 lines
506 B
YAML
|
name: build and test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
|
||
|
jobs:
|
||
|
build_and_test:
|
||
|
name: wxbox - latest
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
toolchain:
|
||
|
- stable
|
||
|
- beta
|
||
|
- nightly
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
||
|
- run: cargo build
|
||
|
- run: cargo test
|
||
|
- run: cargo clippy
|
||
|
- run: cargo fmt --check
|