Switch to real CI
Some checks failed
Cargo Build & Test / Rust project - latest (beta) (push) Failing after 13s
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 4s
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 4s

This commit is contained in:
2025-09-01 20:40:15 -05:00
parent 13ac157e5c
commit 5193f5d391
2 changed files with 26 additions and 19 deletions

26
.gitea/workflows/ci.yaml Normal file
View File

@@ -0,0 +1,26 @@
name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - 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 --verbose
- run: cargo test --verbose