Skip to content

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 #90

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0

chore(deps): bump github.com/spf13/viper from 1.18.2 to 1.19.0 #90

Workflow file for this run

---
name: "Continuous Integration: Linting/Go Tests"
on:
push:
branches:
- "**"
- "!master"
jobs:
Lint:
name: "CI: Linting"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: go mod tidy
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
Test:
name: "CI: Go Tests"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Test
run: |
go mod tidy
go test ./...