Skip to content

Bump the all-actions group with 2 updates #54

Bump the all-actions group with 2 updates

Bump the all-actions group with 2 updates #54

Workflow file for this run

name: Checks
on: [ push ]
jobs:
tests:
name: Run tests ${{ 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@v4
- name: Set up Java ${{ matrix.version }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '${{ matrix.version }}'
- name: Install Dependencies
run: gradle resolveDependencies
shell: bash
- name: test
run: gradle test -i