-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from embulk/github-actions-v4
Check with GitHub Actions v4
- Loading branch information
Showing
2 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
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 |