Skip to content

Commit

Permalink
Merge pull request #129 from thaJeztah/gha_go_1.11
Browse files Browse the repository at this point in the history
update minimum go version to go1.12, and test in gh
  • Loading branch information
cpuguy83 authored Dec 16, 2024
2 parents ae728a9 + 73f3da7 commit 4416315
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
go-version: [1.12.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ Uses [blackfriday](https://github.com/russross/blackfriday) to process markdown

### Usage

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

### How to contribute

We use go modules to manage dependencies.
As such you must be using at least go1.11.
go-md2man -in /path/to/markdownfile.md -out /manfile/output/path
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/cpuguy83/go-md2man/v2

go 1.11
go 1.12

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

0 comments on commit 4416315

Please sign in to comment.