Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ env:
USE_JAVA_DISTRIBUTION: 'zulu'
USE_JAVA_VERSION: '11'

permissions:
contents: read

on:
push:
branches:
Expand Down Expand Up @@ -40,6 +43,8 @@ jobs:
name: Test using Maven with JDK ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/maven-test

# Note: We can't fold this into the matrix because it changes the `steps`,
Expand All @@ -62,13 +67,17 @@ jobs:
name: Test using Bazel with JDK ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/bazel-test

bazel-build:
runs-on: ubuntu-latest
name: Bazel Build
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/bazel-build

local-artifact-tests:
Expand All @@ -77,6 +86,8 @@ jobs:
name: Local Artifact Tests
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/local-artifact-tests

publish:
Expand All @@ -87,6 +98,8 @@ jobs:

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- uses: ./.github/actions/publish-snapshot
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
Loading