mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
b20ca0f632
Signed-off-by: Avelino <avelinorun@gmail.com>
20 lines
338 B
YAML
20 lines
338 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 repo_test.go scripts.go
|