add cargo workflow
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 20s
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 20s
This commit is contained in:
parent
a712e8fb1c
commit
c42abc77c6
1 changed files with 23 additions and 0 deletions
23
.gitea/workflows/cargo.yaml
Normal file
23
.gitea/workflows/cargo.yaml
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Cargo Build & Test
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
name: Rust project - latest
|
||||
strategy:
|
||||
matrix:
|
||||
toolchain:
|
||||
- stable
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: rustupsh=$(mktemp); curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > $rustupsh && sh $rustupsh
|
||||
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
||||
- run: cargo check --verbose
|
||||
- run: cargo build --verbose
|
||||
- run: cargo test --verbose
|
Loading…
Add table
Reference in a new issue