Skip to content

feat: fetch Open English WordNet dictionary from GitHub releases #924

feat: fetch Open English WordNet dictionary from GitHub releases

feat: fetch Open English WordNet dictionary from GitHub releases #924

Workflow file for this run

name: Regression Tests
# default token permissions: none
permissions: {}
on:
push:
branches:
- main
# Currently, there doesn't appear to be a simple solution for
# having required checks with ignored paths (the checks will
# never run and so PRs cannot be merged).
# paths-ignore:
# - "**/*.md"
# - "LICENSE"
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
# paths-ignore:
# - "**/*.md"
# - "LICENSE"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # ratchet:actions/checkout@v7.0.0
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # ratchet:actions/setup-go@v6.5.0
with:
go-version-file: go.mod
cache: false
- name: Tests and coverage
run: go test -cover ./...
env:
# self-updater tests make requests to the GitHub API
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}