Skip to content

chore(deps): bump thiserror from 1.0.61 to 1.0.62 #37

chore(deps): bump thiserror from 1.0.61 to 1.0.62

chore(deps): bump thiserror from 1.0.61 to 1.0.62 #37

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and test
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Clippy
run: cargo clippy --verbose
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all --check
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1