Skip to content

Lazy load word lists until requested #17

Lazy load word lists until requested

Lazy load word lists until requested #17

Workflow file for this run

name: Test
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.14'
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Lint
run: make fmtcheck staticcheck
- name: Test
run: make test-acc