wxbox/.forgejo/workflows/ci.yml
core 2ad8b5f105
Some checks failed
Verify Latest Dependencies / Verify Latest Dependencies (push) Failing after 1s
build and test / wxbox - latest (push) Failing after 2s
fix ci workflow 4
2025-03-04 21:01:52 -05:00

26 lines
No EOL
499 B
YAML

name: build and test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: wxbox - latest
runs-on: docker
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