Update dependency rules_jvm_external to v6.4 #1324
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: Build all samples | |
on: | |
push: | |
branches: | |
- main | |
- 'r5.*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
linux: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: 'Set up JDK 21' | |
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: 'Build all samples using JShell' | |
run: java src/Builder.java | |
- name: 'Check automation for updating versions' | |
run: java src/Updater.java 42 | |
if: github.repository == 'junit-team/junit5-samples' && github.ref == 'refs/heads/main' |