awesome-go/.github/workflows/tests.yaml
Avelino 340743b823 remove site deploy of tests running
Signed-off-by: Avelino <avelinorun@gmail.com>
2021-12-22 10:51:24 -03:00

20 lines
314 B
YAML

name: tests
on:
push:
branches:
- 'main'
pull_request:
jobs:
build:
name: Running test
runs-on: ubuntu-latest
container: golang:latest
steps:
- uses: actions/checkout@1.0.0
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests
run: go test