feat : Optimize log printing interface #26 #389
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gobot ci | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{env.SRCDIR}} | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.17 | |
- name: Build gobot | |
run: go build -o bot_linux | |
- name: Login | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_NAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# - name: Build and push | |
# id: docker_build | |
# uses: docker/build-push-action@v2 | |
# with: | |
# context: . | |
# file: ./Dockerfile | |
# push: true | |
# tags: braidgo/gobot-driver:v${{ github.run_id }}.${{ github.run_number }} | |
# Runs a single command using the runners shell | |
- name: unit test | |
run: | | |
cd $SRCDIR | |
go test -race -covermode atomic -coverprofile=covprofile ./... | |
- name: Install goveralls | |
env: | |
GO111MODULE: off | |
run: | | |
go get github.com/mattn/goveralls | |
- name: Send coverage | |
env: | |
COVERALLS_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
run: | | |
cd $SRCDIR | |
goveralls -coverprofile=covprofile -service=github |