Skip to content

Update to version 0.4.2 #18

Update to version 0.4.2

Update to version 0.4.2 #18

Workflow file for this run

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
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup component add clippy
- run: cargo test --verbose --features "fail-on-warnings"
- run: cargo check --features "debug-images"
- run: cargo clippy