Skip to content

chore(deps): update all non-major dependencies #221

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #221

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all -- --deny warnings
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all -- --nocapture