Remove json #179
Workflow file for this run
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: Run tests | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# linter: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: ./.github/actions/setup-java | |
# | |
# - name: Check code formatting | |
# run: gradle ktlintCheck --scan | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Java | |
uses: ./.github/actions/setup-java | |
- name: Build with Gradle | |
run: gradle shadowJar | |
working-directory: pcbridge-spigot | |
- name: Run tests | |
run: gradle test --info |