Skip to content

feat: add flag for reading specified puzzle part #86

feat: add flag for reading specified puzzle part

feat: add flag for reading specified puzzle part #86

Workflow file for this run

name: Clippy and format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy-and-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Clippy
env:
RUSTFLAGS: "-Dwarnings"
run: cargo clippy --locked
- name: Check formatting
run: cargo fmt --check --all