Skip to content

⬆️ Bump github.com/yuin/goldmark from 1.7.4 to 1.7.7 #87

⬆️ Bump github.com/yuin/goldmark from 1.7.4 to 1.7.7

⬆️ Bump github.com/yuin/goldmark from 1.7.4 to 1.7.7 #87

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ${{ matrix.OS }}
strategy:
matrix:
OS: [ubuntu-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test ./... -v