Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
laduke committed Aug 15, 2024
1 parent b5e1254 commit fce37aa
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ on:
# branches: [ "main" ]

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59

build:
environment: the-env
Expand All @@ -29,4 +41,5 @@ jobs:
- name: Test
env:
ZEROTIER_CENTRAL_TOKEN: ${{ secrets.ZEROTIER_CENTRAL_TOKEN }}
run: go test -v ./...
run: |
go test -v ./...

0 comments on commit fce37aa

Please sign in to comment.