Codebase list golang-github-alexflint-go-scalar / 73056d6
New upstream snapshot. Debian Janitor 2 years ago
4 changed file(s) with 45 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 name: Go
1
2 on:
3 push:
4 branches: [ master ]
5 pull_request:
6 branches: [ master ]
7
8 jobs:
9
10 build_and_test:
11 name: Build and test
12 runs-on: ubuntu-latest
13
14 strategy:
15 fail-fast: false
16 matrix:
17 go: ['1.13', '1.14', '1.15', '1.16']
18
19 steps:
20 - id: go
21 name: Set up Go
22 uses: actions/setup-go@v1
23 with:
24 go-version: ${{ matrix.go }}
25
26 - name: Checkout
27 uses: actions/checkout@v2
28
29 - name: Build
30 run: go build -v .
31
32 - name: Test
33 run: go test -v -coverprofile=profile.cov .
34
35 - name: Send coverage
36 run: bash <(curl -s https://codecov.io/bash) -f profile.cov
+0
-9
.travis.yml less more
0 language: go
1 go:
2 - tip
3 before_install:
4 - go get github.com/axw/gocov/gocov
5 - go get github.com/mattn/goveralls
6 - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
7 script:
8 - $HOME/gopath/bin/goveralls -service=travis-ci
0 golang-github-alexflint-go-scalar (1.0.0+ds+git20210419.1.f33108a-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sat, 31 Jul 2021 05:40:24 -0000
5
06 golang-github-alexflint-go-scalar (1.0.0+ds-2) unstable; urgency=medium
17
28 * Team upload.
00 module github.com/alexflint/go-scalar
1
2 go 1.15
13
24 require (
35 github.com/davecgh/go-spew v1.1.1 // indirect