Skip to content

feat: update to go 1.21.0, add log/slog support #183

feat: update to go 1.21.0, add log/slog support

feat: update to go 1.21.0, add log/slog support #183

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21']
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: |
make build-all
- name: Test
run: make test
- uses: codecov/codecov-action@v3
with:
files: cover.out
fail_ci_if_error: true
verbose: true