Skip to content

build(deps): bump github.com/yuin/goldmark from 1.5.6 to 1.6.0 #179

build(deps): bump github.com/yuin/goldmark from 1.5.6 to 1.6.0

build(deps): bump github.com/yuin/goldmark from 1.5.6 to 1.6.0 #179

Workflow file for this run

---
name: "Test"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
push:
branches: [ master ]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: success()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
fail_ci_if_error: false