Skip to content

🎨 move parse utils to their own package #326

🎨 move parse utils to their own package

🎨 move parse utils to their own package #326

Workflow file for this run

name: CI
on:
push:
jobs:
scala:
strategy:
matrix:
package: [lib, year2022, year2023, year2024]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 17
- uses: sliteteam/[email protected]
env:
GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY }}
- run: sbt -v "+test:testOnly org.lemon.advent.${{ matrix.package }}.*"
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
- uses: sliteteam/[email protected]
env:
GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY }}
- run: pip install -r requirements.txt
- run: pytest