Skip to content

build(deps): bump google.golang.org/api from 0.180.0 to 0.197.0 #165

build(deps): bump google.golang.org/api from 0.180.0 to 0.197.0

build(deps): bump google.golang.org/api from 0.180.0 to 0.197.0 #165

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@v5
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- 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 bookkeeping-go-img:$(date +%s)