2023-06-28 17:51:21 +00:00
|
|
|
name: Cargo Build & Test
|
2023-06-28 12:06:00 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
2023-06-28 17:51:21 +00:00
|
|
|
env:
|
2023-06-28 12:06:00 +00:00
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2023-06-28 17:51:21 +00:00
|
|
|
build_and_test:
|
|
|
|
name: Rust project - latest
|
2023-06-28 12:06:00 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-06-28 17:51:21 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain:
|
|
|
|
- stable
|
|
|
|
- beta
|
|
|
|
- nightly
|
2023-06-28 12:06:00 +00:00
|
|
|
steps:
|
2023-06-28 17:51:21 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
|
|
|
- run: cargo build --verbose
|
|
|
|
- run: cargo test --verbose
|