mirror of https://github.com/mvdan/fdroidcl.git
6 changed files with 26 additions and 19 deletions
@ -0,0 +1,18 @@ |
|||||||
|
on: [push, pull_request] |
||||||
|
name: Test |
||||||
|
jobs: |
||||||
|
test: |
||||||
|
strategy: |
||||||
|
matrix: |
||||||
|
go-version: [1.12.9, 1.13] |
||||||
|
platform: [ubuntu-latest, macos-latest, windows-latest] |
||||||
|
runs-on: ${{ matrix.platform }} |
||||||
|
steps: |
||||||
|
- name: Install Go |
||||||
|
uses: actions/setup-go@v1 |
||||||
|
with: |
||||||
|
go-version: ${{ matrix.go-version }} |
||||||
|
- name: Checkout code |
||||||
|
uses: actions/checkout@v1 |
||||||
|
- name: Test |
||||||
|
run: go test ./... |
||||||
@ -1,13 +0,0 @@ |
|||||||
language: go |
|
||||||
|
|
||||||
go: |
|
||||||
- 1.11.x |
|
||||||
- 1.12.x |
|
||||||
|
|
||||||
env: |
|
||||||
- GO111MODULE=on |
|
||||||
|
|
||||||
install: true |
|
||||||
|
|
||||||
script: |
|
||||||
- go test ./... |
|
||||||
Loading…
Reference in new issue