musichoard/.gitea/workflows/gitea-ci.yaml
Wojciech Kozlowski 0b0f28a374
Some checks failed
Cargo Build and Test / Rust project - latest (push) Failing after 10s
Cargo Build and Test / Rust project - latest (pull_request) Failing after 5s
Add ci workflow
2024-01-06 00:14:42 +01:00

19 lines
404 B
YAML

name: Cargo Build and Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: debian-stable
steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable
- run: cargo build --verbose --all-features --all-targets
- run: cargo test --verbose --all-features --all-targets