This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
feat: api for student presences #95
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 Integration > Unit Testing + Linting + Formatting | |
on: | |
pull_request: | |
push: { branches: [ main, dev ] } | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
run-spotless: | |
name: Check linting + formatting with Spotless | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java env 🏗 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
check-latest: true | |
- name: Setup Gradle 🪓 | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run check task 🧪 | |
run: ./gradlew check |