Skip to content

add symspell interface (#3) #13

add symspell interface (#3)

add symspell interface (#3) #13

Workflow file for this run

name: Go Tests
on:
push:
branches:
- main # Run tests when changes are pushed to the 'main' branch
pull_request:
branches:
- main # Run tests for pull requests targeting the 'main' branch
release:
types:
- created # Run tests when a new release is created
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23.4
- name: Run tests
run: |
go test ./... -test.skip TestLookupCompound -v # Run all tests in verbose mode