docs: Add SLOC counter to README #955
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: read | |
issues: none | |
discussions: none | |
packages: none | |
pages: read | |
pull-requests: read | |
security-events: write | |
statuses: write | |
jobs: | |
build_only: | |
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 -e --batch-mode compile -T 1C | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [21] | |
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: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Test with Maven | |
run: mvn -e --batch-mode verify -T 1C | |
- name: Run Codecov | |
uses: codecov/codecov-action@v4 |