Skip to content

Enable parallax features (#80) #30

Enable parallax features (#80)

Enable parallax features (#80) #30

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Lint
run: |
go vet -all .
go install github.com/mgechev/revive@latest
revive -config .revive.toml -exclude=./vendor/... ./...
- name: Test
run: go test -v ./...