mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2024-11-23 21:03:19 +00:00
ac562fa79e
Bumps [github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/coreos/go-oidc/releases) - [Commits](https://github.com/coreos/go-oidc/compare/v3.4.0...v3.5.0) --- updated-dependencies: - dependency-name: github.com/coreos/go-oidc/v3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
1 KiB
YAML
33 lines
1 KiB
YAML
language: go
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
go:
|
|
- "1.13.x"
|
|
- "1.14.x"
|
|
- tip
|
|
|
|
before_script:
|
|
- export PATH=$HOME/.local/bin:$PATH
|
|
|
|
before_install:
|
|
- go get -u github.com/mattn/goveralls github.com/wadey/gocovmerge
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.18.0
|
|
- pip install cram --user
|
|
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=profile.cov .
|
|
- go test -v -covermode=count -coverprofile=cryptosigner/profile.cov ./cryptosigner
|
|
- go test -v -covermode=count -coverprofile=cipher/profile.cov ./cipher
|
|
- go test -v -covermode=count -coverprofile=jwt/profile.cov ./jwt
|
|
- go test -v ./json # no coverage for forked encoding/json package
|
|
- golangci-lint run
|
|
- cd jose-util && go build && PATH=$PWD:$PATH cram -v jose-util.t # cram tests jose-util
|
|
- cd ..
|
|
|
|
after_success:
|
|
- gocovmerge *.cov */*.cov > merged.coverprofile
|
|
- goveralls -coverprofile merged.coverprofile -service=travis-ci
|