This commit is contained in:
parent
955db49172
commit
82de655a49
13
.github/workflows/solve.yaml
vendored
13
.github/workflows/solve.yaml
vendored
@ -9,7 +9,18 @@ jobs:
|
|||||||
example-action:
|
example-action:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'corretto' # See 'Supported distributions' for available options
|
||||||
|
java-version: '21'
|
||||||
|
- name: Install Kotlin Compiler
|
||||||
|
run: |
|
||||||
|
sudo apt-get install -y curl
|
||||||
|
curl -s https://get.sdkman.io | bash
|
||||||
|
source "$HOME/.sdkman/bin/sdkman-init.sh"
|
||||||
|
sdk install kotlin
|
||||||
|
kotlin -version
|
||||||
- name: Day 1
|
- name: Day 1
|
||||||
run: kotlin puzzle1.kts
|
run: kotlin puzzle1.kts
|
||||||
- name: Day 2
|
- name: Day 2
|
||||||
|
Loading…
Reference in New Issue
Block a user