Skip to content

Create a launch config for making debugging the start command easier #253

Create a launch config for making debugging the start command easier

Create a launch config for making debugging the start command easier #253

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
- main
tags-ignore:
- "**"
pull_request:
branches:
- develop
- main
# Cancel previous workflow run groups that have not completed.
concurrency:
# Group workflow runs by workflow name, along with the head branch ref of the pull request
# or otherwise the branch or tag ref.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
golangci-lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
version: latest