Skip to content

Commit

Permalink
updated packages and go version
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnyale committed Sep 15, 2022
1 parent 5ea58de commit 6f786d5
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 87 deletions.
45 changes: 0 additions & 45 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests
on:
push:

jobs:
tests-off:
name: ${{ matrix.os }} - Go v${{ matrix.go-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.18.x"
os:
- "ubuntu-latest"

steps:
- uses: actions/checkout@v2

- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Test
run: |
go mod tidy -v
go test -cover ./...
31 changes: 19 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
module github.com/YaleSpinup/ecr-api

go 1.15
go 1.18

require (
github.com/YaleSpinup/apierror v0.1.0
github.com/aws/aws-sdk-go v1.40.9
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/aws/aws-sdk-go v1.44.98
github.com/google/uuid v1.3.0
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.30.0 // indirect
github.com/prometheus/procfs v0.7.1 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
google.golang.org/protobuf v1.27.1 // indirect
github.com/prometheus/client_golang v1.13.0
github.com/sirupsen/logrus v1.9.0
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
golang.org/x/sys v0.0.0-20220913175220-63ea55921009 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
Loading

0 comments on commit 6f786d5

Please sign in to comment.