Skip to content

Commit

Permalink
Merge pull request #799 from iamemilio/fix_tests_3.26.0
Browse files Browse the repository at this point in the history
Fix tests 3.27.0
  • Loading branch information
iamemilio authored Oct 19, 2023
2 parents ea7ab2d + 5a5b53d commit 75a7ea3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ jobs:
# If we are using the latest released version to test, we need to use a newer version of go
- go-version: 1.19.x
dirs: v3/integrations/nrnats
extratesting: go get -u github.com/nats-io/nats.go/@master
extratesting: go get -u github.com/nats-io/nats.go
goproxy: direct
- go-version: 1.19.x
dirs: v3/integrations/nrstan
extratesting: go get -u github.com/nats-io/stan.go/@master
Expand All @@ -139,7 +140,6 @@ jobs:
dirs: v3/integrations/nrb3
- go-version: 1.19.x
dirs: v3/integrations/nrmongo
extratesting: go get -u go.mongodb.org/mongo-driver@master
- go-version: 1.19.x
dirs: v3/integrations/nrgraphqlgo,v3/integrations/nrgraphqlgo/example
extratesting: go get -u github.com/graphql-go/graphql@master
Expand All @@ -149,7 +149,7 @@ jobs:

steps:
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand All @@ -170,6 +170,7 @@ jobs:
DIRS: ${{ matrix.dirs }}
EXTRATESTING: ${{ matrix.extratesting }}
PIN: ${{ matrix.pin }}
GOPROXY: ${{ matrix.goproxy }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

Expand Down Expand Up @@ -203,7 +204,7 @@ jobs:
install: |
DEBIAN_FRONTEND=noninteractive apt-get -qq update
DEBIAN_FRONTEND=noninteractive apt-get -qq install -y wget build-essential
wget -nv https://golang.org/dl/go${{ matrix.go-version }}.linux-arm64.tar.gz
wget -nv https://go.dev/dl/go${{ matrix.go-version }}.linux-arm64.tar.gz
rm -rf /usr/local/go
tar -C /usr/local -xzf go${{ matrix.go-version }}.linux-arm64.tar.gz
run: |
Expand Down

0 comments on commit 75a7ea3

Please sign in to comment.