Skip to content

[2021] Fix clippy lints #14

[2021] Fix clippy lints

[2021] Fix clippy lints #14

Workflow file for this run

name: aoc_2021
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2021/**"
env:
CRATE: aoc_2021
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}