vuln-list-update/.github/workflows/go.yml
fl0pp5 76b0d0cd87
Some checks failed
Go / Test (push) Failing after 19s
Update vuln-list-alt repo / Update vuln-list-alt (push) Failing after 5m55s
migrate to ALT workflow
2024-04-16 18:30:56 +03:00

25 lines
467 B
YAML

name: Go
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: alt-sisyphus
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Lint
uses: golangci/golangci-lint-action@v4.0.0
with:
version: v1.54
args : --verbose
- name: Test
run: |
make test