Skip to content

Commit

Permalink
Add GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Oct 29, 2023
1 parent 9dee771 commit 25ab9a2
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Analysis
on: [push, pull_request]
permissions:
contents: read

jobs:
static_analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: WillAbides/[email protected]
with:
go-version: '1.21.x'

- name: Install static analysis tools
run: |
go install github.com/securego/gosec/v2/cmd/[email protected]
go install github.com/fzipp/gocyclo/cmd/[email protected]
go install honnef.co/go/tools/cmd/[email protected]
go install mvdan.cc/[email protected]
- name: Vet
run: go vet ./...

- name: Gofumpt
run: test -z $(gofumpt -d -e . | tee /dev/stderr)

- name: Gocyclo
run: gocyclo -over 20 .

- name: Staticcheck
run: staticcheck ./...

- name: Gosec
run: gosec ./...
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests
on: [push, pull_request]
permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ['1.19.x', '1.21.x']

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: WillAbides/[email protected]
with:
go-version: ${{ matrix.go-version }}

- name: Tests
run: go test ./...

0 comments on commit 25ab9a2

Please sign in to comment.