Nit fixes in build.gradle for publishing #18
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: Check | |
on: [ pull_request, push ] | |
jobs: | |
check: | |
runs-on: ${{ matrix.os }} | |
# push: always run. | |
# pull_request: run only when the PR is submitted from a forked repository, not within this repository. | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-13 # OpenJDK 8 is not supported on macos-14+ (M1). | |
# - windows-latest # The tests are not ready for Windows. | |
steps: | |
- name: Set Git's core.autocrlf to false for Windows before checkout | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- name: Set up OpenJDK 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: "temurin" | |
cache: "gradle" | |
- name: Check | |
env: | |
GCP_EMAIL: ${{secrets.GCP_EMAIL}} | |
GCP_JSON_KEYFILE: ${{secrets.GCP_JSON_KEYFILE}} | |
GCP_PRIVATE_KEYFILE: ${{secrets.GCP_PRIVATE_KEYFILE}} | |
GCP_BUCKET: ${{secrets.GCP_BUCKET}} | |
GCP_BUCKET_DIRECTORY: ${{secrets.GCP_BUCKET_DIRECTORY}} | |
run: ./gradlew --stacktrace check |