awesome-go/.github/workflows/tests.yaml
harishmatheshwaran efe54277c5 Update tests.yaml
2022-10-17 16:58:43 -03:00

20 lines
335 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@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests
run: go test repo_test.go scripts.go