Skip to content

Update itertools requirement from 0.11.0 to 0.12.0 #29

Update itertools requirement from 0.11.0 to 0.12.0

Update itertools requirement from 0.11.0 to 0.12.0 #29

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
cargofmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: ⚙ Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: ✅ Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: ⚙ Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: 📎 Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --release -- -D warnings