Skip to content

Commit

Permalink
fixup! feat: add enterprise wrapper and image + ci
Browse files Browse the repository at this point in the history
  • Loading branch information
deansheather committed Aug 7, 2023
1 parent 16cd870 commit 0ed2704
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/enterprise-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "~1.19"
go-version: "~1.20"

- name: Build binaries
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/enterprise.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "~1.19"
go-version: "~1.20"

- name: Echo Go Cache Paths
id: go-cache-paths
Expand All @@ -63,7 +63,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo: gotestyourself/gotestsum
tag: v1.8.2
tag: v1.10.1

- name: Test
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "^1.16.12"
go-version: "~1.20"

- name: Run make fmt/go
run: make fmt/go
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
node-version: "18"

- name: Install prettier
run: npm install --global prettier
Expand All @@ -75,12 +75,12 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "^1.16.12"
go-version: "~1.20"

- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(go env GOPATH)/bin v1.43.0
| sh -s -- -b $(go env GOPATH)/bin v1.53.2
# Linting needs to be done on each build variation of GOOS.
- name: Run make lint/go/linux
Expand Down
6 changes: 2 additions & 4 deletions enterprise/exectrace.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*
* This file is licensed under the Coder Enterprise License. Please see
* ../LICENSE.enterprise.
*/
// This file is licensed under the Coder Enterprise License. Please see
// ../LICENSE.enterprise.
package exectracewrapper

import (
Expand Down
6 changes: 2 additions & 4 deletions enterprise/exectrace_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*
* This file is licensed under the Coder Enterprise License. Please see
* ../LICENSE.enterprise.
*/
// This file is licensed under the Coder Enterprise License. Please see
// ../LICENSE.enterprise.
package exectracewrapper

import (
Expand Down

0 comments on commit 0ed2704

Please sign in to comment.