Skip to content

Update dependencies

Update dependencies #8

Workflow file for this run

name: Go build and test
on:
push:
branches:
- '**'
paths:
- "**/*.go"
- "**/*.mod"
- "**/*.sum"
- "**/Makefile"
- "!**/*.md"
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Skip duplicate actions
uses: fkirc/[email protected]
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
check-latest: true
cache-dependency-path: go.mod
- name: Install gotestsum
run: |
go install gotest.tools/gotestsum@latest
- name: Test application
run: |
make tidy
make test
- name: Build application
run: |
make build