Skip to content

build(deps): bump the npm_and_yarn group across 1 directory with 9 updates #53

build(deps): bump the npm_and_yarn group across 1 directory with 9 updates

build(deps): bump the npm_and_yarn group across 1 directory with 9 updates #53

Workflow file for this run

name: Github Actions - Go Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Test and build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Vet sources
run: go vet ./...
- name: Test project
run: go test -v ./... -race -covermode=atomic -coverprofile=coverage.out -short
- name: Build image
run: go build -v cmd/Main.go
- name: Build docker
run: docker build . --file .docker/Dockerfile -t wallet-go-img:$(date +%s)