Skip to content

Merge pull request #20 from thegalactiks/renovate/github.com-google-g… #83

Merge pull request #20 from thegalactiks/renovate/github.com-google-g…

Merge pull request #20 from thegalactiks/renovate/github.com-google-g… #83

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.21.6'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...