Skip to content

Bump minimatch from 3.0.4 to 3.1.2 in /elm/word-count #294

Bump minimatch from 3.0.4 to 3.1.2 in /elm/word-count

Bump minimatch from 3.0.4 to 3.1.2 in /elm/word-count #294

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
# https://stackoverflow.com/questions/61163306/running-go-test-in-parent-directory-of-multiple-go-modules
- name: Test
run: find . -name go.mod -execdir go test ./... \;