Skip to content

Update all dependencies #87

Update all dependencies

Update all dependencies #87

Workflow file for this run

name: "Lint and build code"
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "Clone code"
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: "Lint code"
uses: ./.github/actions/lint
build:
needs: lint
runs-on: macos-latest
steps:
- name: "Clone code"
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: "Set up Adopt OpenJDK 17"
uses: ./.github/actions/java
- name: "Validate Gradle wrapper"
uses: gradle/actions/wrapper-validation@v5
- name: "Build code"
shell: sh
run: sh gradlew build