Skip to content

Commit 4416315

Browse files
authored
Merge pull request #129 from thaJeztah/gha_go_1.11
update minimum go version to go1.12, and test in gh
2 parents ae728a9 + 73f3da7 commit 4416315

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
strategy:
1313
matrix:
14-
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
14+
go-version: [1.12.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x]
1515
platform: [ubuntu-20.04]
1616
runs-on: ${{ matrix.platform }}
1717
steps:

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@ Uses [blackfriday](https://github.com/russross/blackfriday) to process markdown
77

88
### Usage
99

10-
```
11-
./go-md2man -in /path/to/markdownfile.md -out /manfile/output/path
12-
```
10+
```bash
11+
go install github.com/cpuguy83/go-md2man@latest
1312

14-
### How to contribute
15-
16-
We use go modules to manage dependencies.
17-
As such you must be using at least go1.11.
13+
go-md2man -in /path/to/markdownfile.md -out /manfile/output/path
14+
```

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/cpuguy83/go-md2man/v2
22

3-
go 1.11
3+
go 1.12
44

55
require github.com/russross/blackfriday/v2 v2.1.0

0 commit comments

Comments
 (0)