Skip to content

Add solution for 2023 day04 #31

Add solution for 2023 day04

Add solution for 2023 day04 #31

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test_solutions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Install Rust toolchain"
uses: dtolnay/rust-toolchain@1.74.0
- name: "Build all workspace solutions"
run: cargo build
- name: "Run tests on all workspace solutions"
run: cargo test