Skip to content

👷 Testing Action Runner #1

👷 Testing Action Runner

👷 Testing Action Runner #1

Workflow file for this run

name: Project Linting
on:
push:
# Will be present on every branch
branches:
- '**'
jobs:
lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
- name: Run golangci-lint
run: |
golangci-lint run