Add UUID overloads for Verify #30
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 & Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
actions: write | |
checks: write | |
contents: read | |
deployments: none | |
issues: write | |
discussions: none | |
packages: none | |
pages: read | |
pull-requests: write | |
security-events: write | |
statuses: write | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [8, 17, 22] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Compile with Maven | |
run: mvn --batch-mode clean verify | |
- name: Run Codecov | |
uses: codecov/codecov-action@v4 |