Rename the tests file

This commit is contained in:
Marc Di Luzio 2020-07-01 13:19:50 +01:00 committed by GitHub
parent 13482c1893
commit c0726a2345
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

45
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,45 @@
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Install swagger
run: |
sudo curl -o /usr/local/bin/swagger -L'#' https://github.com/go-swagger/go-swagger/releases/download/v0.23.0/swagger_linux_amd64
sudo chmod +x /usr/local/bin/swagger
- name: Check out repo
uses: actions/checkout@v2
- name: Get go dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build and Test
run: make test
- name: Upload test coverage result
uses: actions/upload-artifact@v1
with:
name: Coverage
path: /tmp/coverage.html