s3manager-web/.github/workflows/main.yml

14 lines
263 B
YAML
Raw Normal View History

2020-05-04 15:35:59 +02:00
name: Lint and Test
2020-12-03 10:28:05 +01:00
2020-12-07 10:03:35 +01:00
on: [push, pull_request]
2020-12-03 10:28:05 +01:00
2020-05-04 15:35:59 +02:00
jobs:
2020-12-07 10:03:35 +01:00
verify:
2020-05-04 15:35:59 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@v2
- run: make test
- run: make build