Add ci workflow
Some checks failed
Cargo Build and Test / Rust project - latest (push) Failing after 58s
Cargo Build and Test / Rust project - latest (pull_request) Failing after 0s

This commit is contained in:
Wojciech Kozlowski 2024-01-06 02:05:28 +01:00
parent 62d6c43e3c
commit b86e775fff

View File

@ -0,0 +1,20 @@
name: Cargo Build and Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: runner
container: docker.io/library/rust
steps:
- uses: actions/checkout@v3
# - container: rust:latest
# run: rustup update stable && rustup default stable
- run: cargo build --verbose --all-features --all-targets
- run: cargo test --verbose --all-features --all-targets