This repository was archived by the owner on May 31, 2025. It is now read-only.
Fix deprecated workflows #15
This file contains hidden or 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: Test all the modules | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: setup | |
uses: ./.github/actions/setup | |
- name: Spotless | |
run: ./gradlew spotlessCheck | |
- name: Test | |
run: ./gradlew test |