Skip to content

Fix S3 in Modules

Fix S3 in Modules #208

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Unit tests
env:
GOFLAGS: “-buildvcs=false”
jobs:
test:
name: Test
runs-on: ubuntu-latest
container: golang:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
run: |
staticcheck ./...
staticcheck -tags=func_test ./...
go vet ./...
go vet -tags=func_test ./...
- name: Run unit tests
run: go test ./...
- name: Run functional tests
run: go test -tags=func_test ./...