This repository has been archived by the owner on May 6, 2024. It is now read-only.
chore(deps): update actions/checkout digest to 0ad4b8f #224
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: Tests | |
on: pull_request | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04, macos-12, windows-2022 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Execute Gradle build | |
run: ./gradlew test |