Skip to content

chore: bump accelerate from 0.27.2 to 0.30.1 in /presets/tuning/tfs #424

chore: bump accelerate from 0.27.2 to 0.30.1 in /presets/tuning/tfs

chore: bump accelerate from 0.27.2 to 0.30.1 in /presets/tuning/tfs #424

Workflow file for this run

name: lint-go
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.22'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
submodules: true
fetch-depth: 0
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Run go vet
run: |
make vet
- name: Run golangci-lint
run: make lint