Skip to content

Make sure domains added to DAWG are lowercase #7

Make sure domains added to DAWG are lowercase

Make sure domains added to DAWG are lowercase #7

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.23.1']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Vet
run: go vet -v
- name: Test
run: go test -v
- name: Build
run: go build -v