Specify github action versions and limit permissions #191
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 | |
permissions: | |
contents: read | |
checks: write # allow write access to allow the golangci/golangci-lint-action to annotate code in the PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: "1.23.4" # update together with dev.dockerfile | |
- name: Debug with tmate SSH if enabled | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }} | |
uses: mxschmitt/[email protected] | |
- run: make test-cover | |
- uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-latest-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: "1.23.4" # update together with dev.dockerfile | |
- run: make test-latest-deps | |
test22: | |
name: "test go 1.22" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: "1.22" | |
- run: make test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: "1.23.4" # update together with dev.dockerfile | |
- uses: golangci/[email protected] | |
with: | |
version: "v1.63.4" # update together with dev.dockerfile | |
check-tidy: | |
name: go mod tidy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
go-version: "1.23.4" # update together with dev.dockerfile | |
- run: make check-tidy |