Skip to content

Update pipelines. (#13) #30

Update pipelines. (#13)

Update pipelines. (#13) #30

Workflow file for this run

name: ci
env:
GO_VERSION: 1.21.x
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Configure Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v4
name: Checkout
- name: Build
run: go build -v ./...
- name: Run Tests
run: |
go test -v -race -covermode atomic -coverprofile=covprofile ./...