forked from 99designs/gqlgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update golangci-lint (99designs#2103)
Signed-off-by: Steve Coffman <steve@khanacademy.org>
- Loading branch information
1 parent
05d4008
commit add6004
Showing
3 changed files
with
37 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
name: Integration | ||
on: [push, pull_request] | ||
|
||
env: | ||
GO_VERSION: 1.16 | ||
|
||
jobs: | ||
integration: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
container: golang:1.16-alpine | ||
container: golang:${{ env.GO_VERSION }}-alpine | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- run: apk add --no-cache --no-progress nodejs npm git bash | ||
- run: go mod download | ||
- run: cd integration ; npm install | ||
- run: .github/workflows/check-integration | ||
|
||
federation: | ||
runs-on: ubuntu-latest | ||
container: golang:1.16-alpine | ||
container: golang:${{ env.GO_VERSION }}-alpine | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- run: apk add --no-cache --no-progress nodejs npm git bash | ||
- run: go mod download | ||
- run: cd _examples/federation ; npm install | ||
- run: .github/workflows/check-federation | ||
|
||
init: | ||
runs-on: ubuntu-latest | ||
container: golang:1.17-alpine | ||
container: golang:${{ env.GO_VERSION }}-alpine | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- run: apk add --no-cache --no-progress alpine-sdk bash | ||
- run: .github/workflows/check-init |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters