[pre-commit.ci] auto fixes from pre-commit.com hooks #15
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: ClesperantoJ tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
java: [8, 11, 17, 21] | |
name: Test with Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
- name: Execute the tests | |
run: mvn clean test |