paypal/.github/workflows/lint-test.yaml

41 lines
919 B
YAML
Raw Normal View History

2024-05-27 12:36:25 +02:00
name: Lint and Test
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
2024-08-30 13:57:08 +02:00
go-version: "1.23"
2024-05-27 12:36:25 +02:00
- name: Install dependencies
run: go get .
- name: Install linters
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
go install mvdan.cc/unparam@latest
- name: go vet
run: go vet ${{ inputs.path }}
- name: staticcheck
run: staticcheck ${{ inputs.path }}
- name: unparam
run: unparam ${{ inputs.path }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
2024-08-30 13:57:08 +02:00
go-version: "1.23"
2024-05-27 12:36:25 +02:00
- name: Install dependencies
run: go get .
- name: Run Tests
run: go test -v -race ./...