Skip to content

Use relative links from README.md to GitHub badges #28

Use relative links from README.md to GitHub badges

Use relative links from README.md to GitHub badges #28

Workflow file for this run

name: Test
on:
push:
branches:
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v5
- name: Test
run: go test -race -v .