Skip to content

Merge branch 'main' of https://github.com/seipan/loghook #49

Merge branch 'main' of https://github.com/seipan/loghook

Merge branch 'main' of https://github.com/seipan/loghook #49

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
go-version: ['1.18', '1.19', '1.20']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...