Skip to content

馃敿 Update module github.com/lmittmann/tint to v1.2.0 #190

馃敿 Update module github.com/lmittmann/tint to v1.2.0

馃敿 Update module github.com/lmittmann/tint to v1.2.0 #190

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
permissions:
contents: write
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Build
run: go build -v -trimpath -ldflags '-s -w' ./cmd/ddns-go
- name: Test
run: go test -v ./...
- name: Upload Binaries
uses: actions/upload-artifact@v7
with:
name: ddns-go-${{ github.sha }}-${{ matrix.os }}-${{ runner.arch }}
path: ddns-go*