day 18 and 19, as well as empty files for days 20-25 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Build | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: build & test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |