Skip to content

dependabot: bump github.com/spf13/viper from 1.18.2 to 1.19.0 (#25) #108

dependabot: bump github.com/spf13/viper from 1.18.2 to 1.19.0 (#25)

dependabot: bump github.com/spf13/viper from 1.18.2 to 1.19.0 (#25) #108

Workflow file for this run

name: test_and_build
on:
push:
branches: [ "main" ]
paths-ignore:
- "**.md"
- "docs/**"
pull_request:
branches: [ "main" ]
paths-ignore:
- "**.md"
- "docs/**"
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.22.2'
- name: Run unit test
run: make test
- name: Run go vet
run: make vet
- name: Build the application
run: make build