Skip to content

Commit

Permalink
Merge pull request #23 from YaleSpinup/UpdateDSPackages
Browse files Browse the repository at this point in the history
Support for updating packages and Go version
  • Loading branch information
nvnyale authored Sep 28, 2022
2 parents 4c0c595 + 3fd5651 commit fb07d72
Show file tree
Hide file tree
Showing 4 changed files with 412 additions and 100 deletions.
49 changes: 0 additions & 49 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 ./...
32 changes: 22 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
module github.com/YaleSpinup/ds-api

go 1.14
go 1.18

require (
github.com/aws/aws-sdk-go v1.33.5
github.com/google/uuid v1.1.1
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.4
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/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
github.com/sirupsen/logrus v1.6.0
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
google.golang.org/protobuf v1.25.0 // 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 fb07d72

Please sign in to comment.