Files
adventofcode/.github/workflows/2022.yml

53 lines
1.0 KiB
YAML

on:
- push
name: Advent of Code 2022
jobs:
ci:
strategy:
matrix:
toolchain:
- stable
- beta
experimental: [false]
include:
- toolchain: nightly
experimental: true
name: Continuous Integration
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
steps:
- uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Set up caching
uses: Swatinem/rust-cache@v2
with:
workspaces: >
2022 -> target
- name: Build binaries
working-directory: 2022
run: >
cargo build --all-targets
- name: Run tests
working-directory: 2022
run: >
cargo test
- name: Run clippy
working-directory: 2022
run: >
cargo clippy -- --deny warnings