wxbox/.forgejo/workflows/ci.yml
core 8701735144
Some checks failed
Verify Latest Dependencies / Verify Latest Dependencies (push) Failing after 6s
build and test / wxbox - latest (push) Failing after 4s
fix ci workflow 3
2025-03-04 21:00:37 -05:00

28 lines
No EOL
543 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
container:
image: rust:1-bookworm
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