Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/2025.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Advent of Code 2025

on:
push:
branches:
- main
paths:
- .github/workflows/2025.yml
- 2025/**
pull_request:
paths:
- .github/workflows/2025.yml
- 2025/**

jobs:
build-2025:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "2025"

steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
submodules: true

- name: Build
run: cargo build

- name: Test
run: cargo test