forked from go-packages/paypal
51 lines
1.0 KiB
YAML
51 lines
1.0 KiB
YAML
name: Lint and Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- features/*
|
|
- testing/*
|
|
- fix/*
|
|
- enhance/*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- staging
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.23"
|
|
- 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:
|
|
go-version: "1.23"
|
|
- name: Install dependencies
|
|
run: go get .
|
|
- name: Run Tests
|
|
run: go test -v -race ./...
|