Skip to content

Commit

Permalink
ci: Try Go 1.15 RC1 out of curiosity
Browse files Browse the repository at this point in the history
  • Loading branch information
francislavoie committed Aug 6, 2020
1 parent 584eba9 commit 5fec9ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go-version: [ 1.14.x ]
go-version: [ 1.15.0-rc1 ]

# Set some variables per OS, usable via ${{ matrix.VAR }}
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
Expand All @@ -42,6 +42,7 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
stable: 'false'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cross-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
fail-fast: false
matrix:
goos: ['android', 'linux', 'solaris', 'illumos', 'dragonfly', 'freebsd', 'openbsd', 'plan9', 'windows', 'darwin', 'netbsd']
go-version: [ 1.14.x ]
go-version: [ 1.15.0-rc1 ]
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
stable: 'false'
- name: Print Go version and environment
id: vars
run: |
Expand Down

0 comments on commit 5fec9ba

Please sign in to comment.