Bump golang.org/x/sync from 0.8.0 to 0.9.0 in /.github/latest-deps #10
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: CI | |
on: | |
workflow_dispatch: | |
inputs: | |
debug_ssh: | |
description: "Enable SSH debug with tmate, see https://github.com/marketplace/actions/debugging-with-tmate" | |
required: false | |
type: boolean | |
default: false | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 1" # Each Monday | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" # update together with dev.dockerfile | |
- name: Debug with tmate SSH if enabled | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }} | |
uses: mxschmitt/action-tmate@v3 | |
- run: make test-cover | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-latest-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" # update together with dev.dockerfile | |
- run: make test-latest-deps | |
test22: | |
name: "test go 1.22" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- run: make test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" # update together with dev.dockerfile | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: "v1.61.0" # update together with dev.dockerfile | |
check-tidy: | |
name: go mod tidy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" # update together with dev.dockerfile | |
- run: make check-tidy |