Skip to content

update dependencies, compileable with recent rustc #35

update dependencies, compileable with recent rustc

update dependencies, compileable with recent rustc #35

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: formatting
run: cargo fmt --all -- --check
- name: quality
run: cargo clippy --workspace --bins --examples --tests --no-deps
- name: Build
run: cargo check --workspace --bins --examples --tests
- name: Run tests
run: cargo test --release --workspace