-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ap/fix-tests' into ci-updates
- Loading branch information
Showing
314 changed files
with
4,327 additions
and
20,903 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -4,6 +4,10 @@ on: | |
defaults: | ||
run: | ||
shell: bash | ||
permissions: | ||
contents: write | ||
packages: read | ||
checks: write | ||
|
||
|
||
jobs: | ||
|
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 |
---|---|---|
|
@@ -11,17 +11,16 @@ jobs: | |
sh-euox-pipefail-check: | ||
name: "Shell pipefail check" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Run 'set -euox pipefail' check | ||
run: bash ./.github/scripts/ensure_set_euox_pipefail.sh | ||
|
||
md-link-check: | ||
name: "Broken Markdown links" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
|
@@ -30,43 +29,43 @@ jobs: | |
with: | ||
config-file: '.github/linters/mlc_config.json' | ||
use-quiet-mode: 'yes' | ||
|
||
go-lint: | ||
# We can't use VALIDATE_GO from super linter because of this issue: | ||
# https://github.com/github/super-linter/issues/143 | ||
name: "Golang" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: ./go.mod | ||
cache: true | ||
cache: false # temporarily off, as golangci-lint doesn't align 100% with cached setup-go@v4, see: https://github.com/golangci/golangci-lint-action/issues/807 | ||
|
||
- name: Run golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
version: v1.49.0 | ||
version: v1.56.2 | ||
args: --config .github/linters/.golangci.yaml | ||
|
||
proto-lint: | ||
name: "Protobuf" | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# Install the `buf` CLI | ||
- uses: bufbuild/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Lint | ||
- uses: bufbuild/buf-lint-action@v1 | ||
with: | ||
input: proto | ||
|
||
# Breaking change detection | ||
- uses: bufbuild/buf-breaking-action@v1 | ||
continue-on-error: true | ||
|
@@ -77,7 +76,7 @@ jobs: | |
super-lint: | ||
name: "Super Linter" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
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
Oops, something went wrong.