Skip to content

Replace golang.org/x/exp/slices with slices in the stdlib #2449

Replace golang.org/x/exp/slices with slices in the stdlib

Replace golang.org/x/exp/slices with slices in the stdlib #2449

Workflow file for this run

name: Checks
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
precommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
check-latest: true
- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files --hook-stage=manual
lint:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# TODO[md]: run this on these once the horrendous performance on macos & windows is fixed
# os: [ubuntu-latest, macos-latest, windows-latest]
module: [".", "api"]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "${{ matrix.module }}/go.mod"
# check-latest: true
- uses: golangci/golangci-lint-action@v3
with:
version: v1.54
working-directory: ${{ matrix.module }}