fix(deps): update dependency org.apache.maven:maven-core to v3.9.9 #308
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
# Workflow for testing spoon-maven-plugin. | |
name: tests | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test-linux: | |
runs-on: ${{ matrix.os }} | |
name: Tests with Java ${{ matrix.java }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
java: [11, 17, 20, 21-ea] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup env | |
uses: ./.github/actions/setup-tests | |
- name: Time nix setup | |
run: nix develop .#jdk${{ matrix.java }} --command true | |
- name: Test | |
run: nix develop .#jdk${{ matrix.java }} --command test |