Skip to content

Commit

Permalink
Merge pull request nsqio#35 from ploxiln/github_actions_fixup
Browse files Browse the repository at this point in the history
GitHub Actions fixups, README badges update
  • Loading branch information
ploxiln authored Sep 12, 2021
2 parents a14d574 + 31c9997 commit bc05aaf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- "amd64"
- "386"

container: "golang:${{matrix.gover}}-alpine"
container: "golang:${{matrix.gover}}"
env:
GOARCH: "${{matrix.goarch}}"

Expand All @@ -30,8 +30,12 @@ jobs:

- name: test
run: |
GOMAXPROCS=1 go test -v
GOMAXPROCS=4 go test -v -race
go test -list Test
GOMAXPROCS=1 go test
if [ "$GOARCH" = "amd64" ]; then
echo "With -race:"
GOMAXPROCS=4 go test -race
fi
- name: lint
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# go-diskqueue

[![Build Status](https://secure.travis-ci.org/nsqio/go-diskqueue.png?branch=master)](http://travis-ci.org/nsqio/go-diskqueue) [![GoDoc](https://godoc.org/github.com/nsqio/go-diskqueue?status.svg)](https://godoc.org/github.com/nsqio/go-diskqueue) [![GitHub release](https://img.shields.io/github/release/nsqio/go-diskqueue.svg)](https://github.com/nsqio/go-diskqueue/releases/latest)
[![Build Status](https://github.com/nsqio/go-diskqueue/workflows/tests/badge.svg)](https://github.com/nsqio/go-diskqueue/actions) [![Go Reference](https://pkg.go.dev/badge/github.com/nsqio/go-diskqueue.svg)](https://pkg.go.dev/github.com/nsqio/go-diskqueue) [![GitHub release](https://img.shields.io/github/release/nsqio/go-diskqueue.svg)](https://github.com/nsqio/go-diskqueue/releases/latest)

A Go package providing a filesystem-backed FIFO queue

Expand Down

0 comments on commit bc05aaf

Please sign in to comment.