Skip to content

Commit

Permalink
Merge pull request #13 from gobuffalo/task-move-to-actions
Browse files Browse the repository at this point in the history
Moving to github actions
  • Loading branch information
paganotoni authored Dec 7, 2019
2 parents 02692fa + 599fb82 commit 6f54eaf
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 86 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tests
on: [push]
jobs:

tests-on:
name: ${{matrix.go-version}} ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.12.x, 1.13.x]
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Test
run: |
go mod tidy -v
go test -race ./...
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<a href="https://godoc.org/github.com/gobuffalo/release"><img src="https://godoc.org/github.com/gobuffalo/release?status.svg" alt="GoDoc" /></a>
<a href="https://dev.azure.com/markbates/buffalo/_build?definitionId=3"><img src="https://dev.azure.com/markbates/buffalo/_apis/build/status/gobuffalo.release?branchName=master" alt="CI" /></a>
<a href=""><img src="https://github.com/gobuffalo/release/workflows/Tests/badge.svg" alt="Build Status" /></a>
<a href="https://goreportcard.com/report/github.com/gobuffalo/release"><img src="https://goreportcard.com/badge/github.com/gobuffalo/release" alt="Go Report Card" /></a>
</p>

Expand Down
66 changes: 0 additions & 66 deletions azure-pipelines.yml

This file was deleted.

19 changes: 0 additions & 19 deletions azure-tests.yml

This file was deleted.

0 comments on commit 6f54eaf

Please sign in to comment.