Skip to content

Bump go version and transitive text dependency #2

Bump go version and transitive text dependency

Bump go version and transitive text dependency #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Golang
uses: actions/setup-go@v3
with:
go-version: '>=1.17.0'
- name: Compile
run: make build
- name: Run tests
run: make test
- name: Run code verification
run: make verify