Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Go version from 1.14 to 1.15 #89

Merged
merged 10 commits into from
Aug 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.14.0'
go-version: '^1.15.0'
- run: go mod download
- name: Build & Test
run: |
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Coverage with CodeClimate
on: [push]
jobs:
build:
codeclimate-report:
runs-on: ubuntu-latest
name: codeclimate-report
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.14.0'
go-version: '^1.15.0'
- run: go mod download && go build
- uses: paambaati/codeclimate-action@v2.5.0
env:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@ on:
tags:
- v*.*.*
jobs:
build:
goreleaser:
runs-on: ubuntu-latest
name: goreleaser
steps:
- uses: actions/checkout@v2
- name: Unshallow Fetch
run: git fetch --prune --unshallow
- uses: actions/setup-go@v2
with:
go-version: '^1.14.0'
go-version: '^1.15.0'
- name: Release via goreleaser
uses: goreleaser/goreleaser-action@master
with:
Expand Down
5 changes: 4 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ builds:
- linux
- darwin
- windows
ignore:
- goos: darwin
goarch: 386
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
replacements:
Expand All @@ -28,7 +31,7 @@ changelog:
- '^docs:'
- '^test:'
brews:
- github:
- tap:
owner: toshimaru
name: homebrew-nyan
description: Colored cat command which supports syntax highlighting.
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/toshimaru/nyan

go 1.14
go 1.15

require (
github.com/alecthomas/chroma v0.8.0
Expand Down