Skip to content

Bump github.com/no-src/log from 0.2.3 to 0.3.0 #7

Bump github.com/no-src/log from 0.2.3 to 0.3.0

Bump github.com/no-src/log from 0.2.3 to 0.3.0 #7

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go: [ '1.19','1.20' ]
os: [ 'ubuntu-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...