Files
nes-emu/.gitea/workflows/ci.yaml
Matthew Pomes 4113570eb3
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 48s
Don't bother updating rust - the container is already rebuilt monthly, and we don't run on nightly
2025-12-07 11:47:15 -06:00

25 lines
485 B
YAML

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: rustup-all
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v4
# - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose