Skip to content

Commit

Permalink
Merge branch 'main' into update/sbt-1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
twentylemon authored Nov 23, 2024
2 parents b301b6d + 551722f commit 62af6e3
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
scala:
strategy:
matrix:
package: [lib, year2022, year2023]
package: [lib, year2022, year2023, year2024]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ https://adventofcode.com/

Deal with it.

* [2024 solutions](src/main/scala/org/lemon/advent/year2024/)
* [2023 solutions](src/main/scala/org/lemon/advent/year2023/)
* [2022 solutions](src/test/scala/org/lemon/advent/year2022/)
5 changes: 4 additions & 1 deletion project/metals.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// format: off
// DO NOT EDIT! This file is auto-generated.

// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.18")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "2.0.5")

// format: on
7 changes: 7 additions & 0 deletions src/main/scala/org/lemon/advent/year2024/Day01.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.lemon.advent.year2024

private object Day01:

def part1(input: String) = ???

def part2(input: String) = ???
14 changes: 14 additions & 0 deletions src/test/scala/org/lemon/advent/year2024/Day01Test.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package org.lemon.advent.year2024

import org.lemon.advent._
import org.lemon.advent.year2024.Day01._

class Day01Test extends UnitTest:

test("part 1 example") {}

test("part 1") {}

test("part 2 example") {}

test("part 2") {}

0 comments on commit 62af6e3

Please sign in to comment.