Skip to content

[#8] debug entry point with the command line #40

[#8] debug entry point with the command line

[#8] debug entry point with the command line #40

Workflow file for this run

name: Run the markdown runner
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Unit test
run: go test -v ./...
- name: Integration test
run: bash test/run.sh
- name: Try executing the README
run: go install && markdown-runner