fix(deps): update dependency org.scala-lang:scala3-library_3 to v3.4.0 #281
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, and Check codebase | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths-ignore: | |
- '.gitignore' | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
- 'README.md' | |
- 'renovate.json' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, macos, windows] | |
jvm_version: [21] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Setup JDK ${{ matrix.jvm_version }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.jvm_version }} | |
- name: Test | |
run: ./gradlew test | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check | |
run: ./gradlew check | |
- name: Build | |
run: ./gradlew classes testClasses | |
success: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🎉 Build, Test and Check steps succeeded!" |