Skip to content

[WIP] Test rework permanent next-target #6

[WIP] Test rework permanent next-target

[WIP] Test rework permanent next-target #6

Workflow file for this run

name: lint

Check failure on line 1 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

Cannot define both `uses` and `steps` at the same time for the following jobs: go
on:
push:
branches:
- main
- 'release/**'
pull_request:
jobs:
go:
timeout-minutes: 5
name: go ${{ matrix.goos }} ${{ matrix.gonext }}
uses: ./.github/workflows/env.yml
runs-on: "${{ matrix.os }}"
strategy:
matrix:
include:
- os: ubuntu-24.04
goos: linux
- os: ubuntu-24.04
goos: freebsd
# FIXME: this is currently failing in a non-sensical way, so, running on linux instead...
# - os: windows-2022
- os: ubuntu-24.04
goos: windows
- os: ubuntu-24.04
goos: linux
gonext: golang-next
- os: ubuntu-24.04
goos: freebsd
gonext: golang-next
- os: ubuntu-24.04
goos: windows
gonext: golang-next
env:
GOOS: "${{ matrix.goos }}"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set GO env
run: |
if [ "$gonext" != "" ]; then
. ./hack/build-integration-canary.sh
canary::golang::latest
fi
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --verbose
other:
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: true
- name: yaml
run: make lint-yaml
- name: shell
run: make lint-shell
- name: go imports ordering
run: |
go install -v github.com/incu6us/goimports-reviser/v3@latest
make lint-imports