Skip to content

Merge branch 'main' of https://github.com/Basicprogrammer10/Advent-Of… #29

Merge branch 'main' of https://github.com/Basicprogrammer10/Advent-Of…

Merge branch 'main' of https://github.com/Basicprogrammer10/Advent-Of… #29

Workflow file for this run

name: aoc_2024
on:
workflow_dispatch:
push:
paths:
- "common/**"
- "aoc_2024/**"
env:
CRATE: aoc_2024
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 }}