Skip to content

Update job name in GitHub workflow #55

Update job name in GitHub workflow

Update job name in GitHub workflow #55

Workflow file for this run

name: Checks
on: [ push ]
jobs:
tests:
name: Run tests for Java ${{ matrix.version }}
runs-on: [ self-hosted, small ]
strategy:
fail-fast: false
matrix:
version:
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
steps:
- uses: actions/checkout@v3
- name: Set up Java ${{ matrix.version }}
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '${{ matrix.version }}'
- name: Install Dependencies
run: gradle resolveDependencies
shell: bash
- name: test
run: gradle test -i