Skip to content

fix lint workflow

fix lint workflow #3

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
cargo-test:
name: cargo-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get latest version of stable Rust
run: rustup update stable
- name: Build
run: cargo build --release --all-features --verbose
- name: Run tests
run: cargo test --release --all-features --verbose