Skip to content

Update deps

Update deps #69

Workflow file for this run

name: Rust
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Build
run: cargo build --all-targets --all-features --locked
- name: Run tests
run: cargo test --locked -- --nocapture
- name: Format
run: |
cargo fmt --check