Cleanup CI/CD pipeline (#115)

This commit is contained in:
Thomas Schönauer
2022-11-02 16:25:54 +00:00
committed by GitHub
parent be0984cdf3
commit 16a7d5f00b
13 changed files with 182 additions and 252 deletions

View File

@@ -1,24 +0,0 @@
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@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose