Bump org.junit.jupiter:junit-jupiter from 5.11.1 to 5.11.3 #138
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: CI | |
# Controls when the workflow will run | |
on: [push, pull_request] | |
jobs: | |
# This job will build and test the JSpecify Conformance Tests on the Checker Framework | |
build-and-test: | |
strategy: | |
matrix: | |
jdk: [ 11, 17, 21 ] | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: jspecify-conformance | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Check out CF JSpecify Conformance Tests | |
uses: actions/checkout@v4 | |
with: | |
path: jspecify-conformance | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{matrix.jdk}} | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Build and Test | |
run: gradle test |