Skip to content

refactor: day19 2023 #134

refactor: day19 2023

refactor: day19 2023 #134

Workflow file for this run

name: 2023
on: [push]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup install 1.74.0
- run: rustup default 1.74.0
- run: rustup component add rustfmt
- run: rustup component add clippy
- run: cargo fmt --all -- --check
working-directory: 2023/
- run: cargo clippy -- -D clippy::all
working-directory: 2023/
- run: cargo build --release
working-directory: 2023/