remove site deploy of tests running

Signed-off-by: Avelino <avelinorun@gmail.com>
This commit is contained in:
Avelino 2021-12-22 10:39:01 -03:00
parent 1e1da2e8c2
commit 340743b823

View File

@ -1,4 +1,4 @@
name: Run tests name: tests
on: on:
push: push:
@ -10,7 +10,6 @@ jobs:
build: build:
name: Running test name: Running test
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: netlify
container: golang:latest container: golang:latest
steps: steps:
- uses: actions/checkout@1.0.0 - uses: actions/checkout@1.0.0
@ -18,11 +17,3 @@ jobs:
run: go get -v -t -d ./... run: go get -v -t -d ./...
- name: Run tests - name: Run tests
run: go test run: go test
- name: netlify awesome-go.com
uses: jsmrcaga/action-netlify-deploy@v1.1.0
if: contains('refs/heads/main', github.ref)
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_DEPLOY_TO_PROD: true
build_directory: tmpl