Skip to content

Change unimplemented to unreachable #2

Change unimplemented to unreachable

Change unimplemented to unreachable #2

Workflow file for this run

name: aoc_2021
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2021/**"
env:
CRATE: aoc_2021
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build -p ${{ env.CRATE }}
- name: Test
run: cargo test -p ${{ env.CRATE }}