Skip to content

Commit

Permalink
ci: add GitHub Actions workflow 'push' (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Aug 29, 2020
1 parent f19fe8c commit 8fc4837
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/push.yml
@@ -0,0 +1,56 @@
name: 'push'

on:
push:
pull_request:

env:
GO111MODULE: on

jobs:

test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, windows, macOS ]
go: [ 1.12.x, 1.13.x, 1.14.x ]

runs-on: ${{ matrix.os }}-latest

steps:

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

- uses: actions/checkout@v2

- name: Run golangci-lint
if: matrix.os == 'ubuntu'
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./ latest
./golangci-lint run -v
- name: Run tests
shell: bash
run: |
go get -v github.com/kyoh86/richgo@v0.3.3
$HOME/go/bin/richgo test -v ./...
- name: Check formatting
if: matrix.os != 'windows'
run: diff -u <(echo -n) <(gofmt -d -s .)

- name: Build
run: |
cd cobra
go build
- name: go vet
if: matrix.os != 'windows'
run: |
if [ -z $NOVET ]; then
diff -u <(echo -n) <(go vet . 2>&1 | grep -vE 'ExampleCommand|bash_completions.*Fprint');
fi

0 comments on commit 8fc4837

Please sign in to comment.