Skip to content

Commit

Permalink
Add the remaining days to the README and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jan 19, 2024
1 parent 10348a3 commit f78b232
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
day: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22']
day: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25']
exclude:
# TODO: Investigate how we could build this with GNUStep
- os: 'ubuntu-latest'
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ My solutions to the [Advent of Code 2023](https://adventofcode.com/2023), writte
- [x] Day 20: [Kotlin/Native](day20/src/day20.kt)
- [ ] Day 21: [C#](day21/src/day21.cs)
- [ ] Day 22: [Rust](day22/src/day22.rs)
- [ ] Day 23: [Ruby](day23/src/day23.rb)
- [ ] Day 24: [Haskell](day24/src/Day24.hs)
- [ ] Day 25: [Python](day25/src/day25.py)

## Packaging

Expand Down
21 changes: 21 additions & 0 deletions paths.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,5 +185,26 @@
"name": "Rust"
},
"path": "day22/src/day22.rs"
},
{
"lang": {
"codemirror": "ruby",
"name": "Ruby"
},
"path": "day23/src/day23.rb"
},
{
"lang": {
"codemirror": "haskell",
"name": "Haskell"
},
"path": "day24/src/Day24.hs"
},
{
"lang": {
"codemirror": "python",
"name": "Python"
},
"path": "day25/src/day25.py"
}
]

0 comments on commit f78b232

Please sign in to comment.