Skip to content

chore: typing for day1 main #326

chore: typing for day1 main

chore: typing for day1 main #326

name: 2023 Rust checks
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Test Rust
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./2023/aoc2023
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose