Skip to content

Update dependencies #51

Update dependencies

Update dependencies #51

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23', '1.22' ]
name: Go ${{ matrix.go }} test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install GolangCI-Lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
- run: make lint
- run: make test_coverage
- name: Upload code coverage to codecov
if: matrix.go == '1.23'
uses: codecov/codecov-action@v3
with:
file: ./coverage.out