Skip to content

chore(deps): bump thiserror from 1.0.57 to 1.0.59 #69

chore(deps): bump thiserror from 1.0.57 to 1.0.59

chore(deps): bump thiserror from 1.0.57 to 1.0.59 #69

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- "*"
env:
RUSTFLAGS: --deny warnings
jobs:
lint:
name: lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: rust fmt
run: cargo fmt --all -- --check
- name: super linter
uses: super-linter/super-linter@v6.3.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_GITLEAKS: true
VALIDATE_YAMLLINT: true
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_MARKDOWN: true
- uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
rust: [ stable, nightly ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2
- run: cargo test --all