Make sure that base folder exists. #9
Workflow file for this run
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: "Lint and build code" | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Clone code" | |
uses: actions/checkout@v4 | |
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@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Set up Adopt OpenJDK 17" | |
uses: ./.github/actions/java | |
- name: "Validate Gradle wrapper" | |
uses: gradle/wrapper-validation-action@v1 | |
- name: "Build code" | |
shell: sh | |
run: sh gradlew build |