Skip to content

Commit

Permalink
Bumped up to Go 1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Dec 30, 2021
1 parent 117e8e3 commit 725edc6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pull_request_rules:
conditions:
- -draft
- author~=^dependabot(|-preview)\[bot\]$
- check-success='test (1.15.x, ubuntu-latest)'
- check-success='test (1.16.x, ubuntu-latest)'
- check-success='test (1.17.x, ubuntu-latest)'
- check-success='Analyze (go)'
Expand All @@ -22,7 +21,6 @@ pull_request_rules:
- name: Alert on major version detection
conditions:
- author~=^dependabot(|-preview)\[bot\]$
- check-success='test (1.15.x, ubuntu-latest)'
- check-success='test (1.16.x, ubuntu-latest)'
- check-success='test (1.17.x, ubuntu-latest)'
- check-success='Analyze (go)'
Expand All @@ -38,7 +36,6 @@ pull_request_rules:
- name: Automatic Merge ⬇️ on Approval ✔
conditions:
- "#approved-reviews-by>=1"
- check-success='test (1.15.x, ubuntu-latest)'
- check-success='test (1.16.x, ubuntu-latest)'
- check-success='test (1.17.x, ubuntu-latest)'
- check-success='Analyze (go)'
Expand Down Expand Up @@ -163,6 +160,7 @@ pull_request_rules:
- author!=dependabot[bot]
- author!=mergify[bot]
- author!=mrz1836
- author!=icellan
actions:
comment:
message: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ 1.15.x, 1.16.x, 1.17.x ]
go-version: [ 1.16.x, 1.17.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# go-parameters
> Parameter multi-tool that parses json, msg pack, or multi-part form data into a parameter object.
> Parameter multi-tool that parses json, msg pack, or multipart form data into a parameter object.
[![Release](https://img.shields.io/github/release-pre/mrz1836/go-parameters.svg?logo=github&style=flat)](https://github.com/mrz1836/go-parameters/releases)
[![Build Status](https://img.shields.io/github/workflow/status/mrz1836/go-parameters/run-go-tests?logo=github&v=3)](https://github.com/mrz1836/go-parameters/actions)
Expand Down Expand Up @@ -110,7 +110,7 @@ vet Run the Go vet application

## Examples & Tests
All unit tests and [examples](examples) run via [Github Actions](https://github.com/mrz1836/go-parameters/actions) and
uses [Go version 1.15.x](https://golang.org/doc/go1.15). View the [configuration file](.github/workflows/run-tests.yml).
uses [Go version 1.16.x](https://golang.org/doc/go1.16). View the [configuration file](.github/workflows/run-tests.yml).

Run all tests (including integration tests)
```shell script
Expand Down Expand Up @@ -173,8 +173,8 @@ func main() {

## Maintainers
| [<img src="https://github.com/mrz1836.png" height="50" alt="MrZ" />](https://github.com/mrz1836) | [<img src="https://github.com/kayleg.png" height="50" alt="kayleg" />](https://github.com/kayleg) |
|:---:|:---:|
| [MrZ](https://github.com/mrz1836) | [kayleg](https://github.com/kayleg) |
|:------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------:|
| [MrZ](https://github.com/mrz1836) | [kayleg](https://github.com/kayleg) |

<br/>

Expand All @@ -191,4 +191,4 @@ or by making a [**bitcoin donation**](https://mrz1818.com/?tab=tips&utm_source=g

## License

![License](https://img.shields.io/github/license/mrz1836/go-parameters.svg?style=flat&p=1)
[![License](https://img.shields.io/github/license/mrz1836/go-parameters.svg?style=flat&p=1)](LICENSE)
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mrz1836/go-parameters

go 1.15
go 1.16

require (
github.com/gorilla/mux v1.8.0
Expand Down

0 comments on commit 725edc6

Please sign in to comment.