Bump crate-ci/typos from 1.26.1 to 1.26.8 #656
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" # Every 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.2" # update together with Dockerfile.dev | |
- 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.2" # update together with dev.dockerfile | |
- run: make test-latest-deps | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.2" # update together with Dockerfile.dev | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: "v1.61.0" # update together with Dockerfile.dev | |
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.2" # update together with Dockerfile.dev | |
- run: make check-tidy | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: crate-ci/[email protected] |