Skip to content

fix(deps): update rust crate thiserror to 1.0.59 - autoclosed #367

fix(deps): update rust crate thiserror to 1.0.59 - autoclosed

fix(deps): update rust crate thiserror to 1.0.59 - autoclosed #367

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Lint
run: cargo clippy --all-features --all -- -D clippy::all -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose