Skip to content

Bump thiserror from 1.0.58 to 1.0.61 #128

Bump thiserror from 1.0.58 to 1.0.61

Bump thiserror from 1.0.58 to 1.0.61 #128

Workflow file for this run

name: Code Quality
on:
push:
branches:
- main
pull_request: {}
permissions:
contents: read
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy:
name: Clippy check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy --all-targets --all-features
fmt:
name: Rustfmt check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
flake8:
name: Flake8 check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8
pylint:
name: Pylint check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pylint
run: pip install pylint
- name: Run pylint
run: find . -iname "*.py" -path "./python/*" | xargs pylint
isort:
name: Isort check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install isort
run: pip install isort
- name: Run isort
run: isort . --check-only