Lesson 27 Effects #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: Continuous Check | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Continuous Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Build with Gradle | |
env: | |
DB_URL: ${{ secrets.DB_URL }} | |
run: ./gradlew check --info |