Files
Gokapi/.github/workflows/test-code.yml
2021-05-10 16:48:35 +02:00

16 lines
303 B
YAML

name: Compile and run unit tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16.4'
- run: go test ./... --tags=test,awsmock