Skip to content

Bump github.com/spf13/viper from 1.17.0 to 1.18.2 in /backend #51

Bump github.com/spf13/viper from 1.17.0 to 1.18.2 in /backend

Bump github.com/spf13/viper from 1.17.0 to 1.18.2 in /backend #51

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Push / pull request
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
working-directory: ./backend
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# - name: Test
# run: go test -p 1 ./...