Skip to content

Commit

Permalink
Add go1.17 to CI (#129)
Browse files Browse the repository at this point in the history
* add go 1.17 to build

* add go 1.17 to build

* add go 1.17 to build

* tidy
  • Loading branch information
Clivern committed Oct 8, 2021
1 parent 2f0618e commit 04a9673
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 268 deletions.
92 changes: 92 additions & 0 deletions .github/boring-cyborg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
firstIssueWelcomeComment: "Thanks for opening your first issue here! Be sure to follow the issue template!"
firstPRMergeComment: "Awesome work, congrats on your first merged pull request!"
firstPRWelcomeComment: "Thanks for opening this pull request! Please check out our contributing guidelines."

labelPRBasedOnFilePath:
"🚧 CI":
- .github/workflows/*

"🚧 CSS":
- "**/*.css"

"🚧 Configuration":
- .github/*

"🚧 Dependencies":
- Dockerfile*
- composer.*
- package.json
- package-lock.json
- yarn.lock
- go.mod
- go.sum
- build.gradle
- Cargo.toml
- Cargo.lock
- Gemfile.lock
- Gemfile

"🚧 Docker":
- Dockerfile*
- .docker/**/*

"🚧 Documentation":
- README.md
- CONTRIBUTING.md

"🚧 Go":
- "**/*.go"

"🚧 Rust":
- "**/*.rs"

"🚧 Java":
- "**/*.java"

"🚧 Ruby":
- "**/*.rb"

"🚧 HTML":
- "**/*.htm"
- "**/*.html"

"🚧 Image":
- "**/*.gif"
- "**/*.jpg"
- "**/*.jpeg"
- "**/*.png"
- "**/*.webp"

"🚧 JSON":
- "**/*.json"

"🚧 JavaScript":
- "**/*.js"
- package.json
- package-lock.json
- yarn.lock

"🚧 MarkDown":
- "**/*.md"

"🚧 PHP":
- "**/*.php"
- composer.*

"🚧 Source":
- src/**/*

"🚧 TOML":
- "**/*.toml"

"🚧 Templates":
- "**/*.twig"
- "**/*.tpl"

"🚧 Tests":
- tests/**/*

"🚧 YAML":
- "**/*.yml"
- "**/*.yaml"
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on: [push]

jobs:
build:
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.12', '1.13', '1.14', '1.15']
go: ['1.13', '1.14', '1.15', '1.16', '1.17']
name: Go ${{ matrix.go }} run
steps:
- uses: actions/checkout@v2
Expand Down
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/clivern/rhino

go 1.15
go 1.16

require (
github.com/bxcodec/faker/v3 v3.6.0
Expand Down
Loading

0 comments on commit 04a9673

Please sign in to comment.