Skip to content

default theme to cxd, not "" #60

default theme to cxd, not ""

default theme to cxd, not "" #60

Workflow file for this run

name: Test Multiple Go Versions
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22", "1.23"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build ./...
- name: Test
run: go test ./...