Replace Travis CI with GitHub Actions workflow

This commit is contained in:
Suhas Karanth 2020-07-29 15:37:21 +05:30 committed by Suhas Karanth
parent 1163963381
commit 80177adba8
3 changed files with 58 additions and 27 deletions

57
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,57 @@
name: build
on:
push:
tags: [v*]
branches: [master]
pull_request:
jobs:
# See https://github.com/mvdan/github-actions-golang
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.14.x, 1.15.x]
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-new-combinations
include:
- os: windows-latest
go-version: 1.15.x
- os: macos-latest
go-version: 1.15.x
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
# See https://github.com/actions/cache/blob/master/examples.md#go---modules
- name: Cache Go Modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Go install moq
run: go install -mod=readonly
- name: Run vet
if: matrix.os == 'ubuntu-latest'
run: go vet -mod=readonly ./...
- name: Lint
if: matrix.os == 'ubuntu-latest'
run: |
GO111MODULE=off go get -u golang.org/x/lint/golint
golint ./...
- name: Test
run: go test -mod=readonly ./...

View File

@ -1,26 +0,0 @@
language: go
sudo: false
branches:
only:
- master
jobs:
include:
- os: linux
go: 1.x
- os: osx
go: 1.x
- os: windows
go: 1.x
before_install:
- go get golang.org/x/lint/golint
before_script:
- go vet ./...
- golint ./...
script:
- go test -v ./...

View File

@ -1,4 +1,4 @@
![moq logo](moq-logo-small.png) [![Build Status](https://travis-ci.org/matryer/moq.svg?branch=master)](https://travis-ci.org/matryer/moq) [![Go Report Card](https://goreportcard.com/badge/github.com/matryer/moq)](https://goreportcard.com/report/github.com/matryer/moq)
![moq logo](moq-logo-small.png) [![build](https://github.com/matryer/moq/workflows/build/badge.svg)](https://github.com/matryer/moq/actions?query=branch%3Amaster) [![Go Report Card](https://goreportcard.com/badge/github.com/matryer/moq)](https://goreportcard.com/report/github.com/matryer/moq)
Interface mocking tool for go generate.