s3manager-web/.github/workflows/main.yml
Lena Fuhrimann 28af0c95fd Use Go 1.15
2020-10-13 16:02:02 +02:00

21 lines
453 B
YAML

name: Lint and Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
- name: Test
run: make test
- name: Build
run: make build