Fix for commit 7fd3bd5a75c9106358c12aab5144e8b194a6f9f9 #5
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build + Test (${{matrix.operating-system}}) | |
strategy: | |
matrix: | |
operating-system: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{matrix.operating-system}} | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup-java | |
- uses: gradle/actions/[email protected] | |
- run: ./gradlew build | |
update-dependency-graph: | |
name: Update dependency graph | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/setup-java | |
- uses: gradle/actions/[email protected] |