Skip to content

Commit

Permalink
Merge pull request #6 from volkovartem/documentation
Browse files Browse the repository at this point in the history
Pipeline
  • Loading branch information
netvolart authored Mar 21, 2024
2 parents e56afaf + adbb91c commit d535618
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: lint
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3

0 comments on commit d535618

Please sign in to comment.