Skip to content

Year 2018 Day 17

Year 2018 Day 17 #551

Workflow file for this run

name: Checks
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy --tests --all-features -- --deny warnings
- run: cargo test