Skip to content

Commit

Permalink
Merge branch 'main' into add-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvshivkov authored Oct 7, 2024
2 parents 3ee87c9 + 89628f1 commit 3a47a71
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/golangci-lint.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- master
pull_request:

env:
GO_VERSION: '1.22'

permissions:
contents: read

Expand All @@ -22,3 +25,13 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.3

tests:
name: go-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: make test

0 comments on commit 3a47a71

Please sign in to comment.