Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Nov 17, 2020
1 parent 43fb14f commit 95b957f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 28 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on: [push, pull_request]

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Test
run: make test
- name: Lint
run: make lint
28 changes: 0 additions & 28 deletions .github/workflows/go.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Cross build
run: make cross
- name: Create Release
id: create_release
uses: actions/create-release@master
Expand Down

0 comments on commit 95b957f

Please sign in to comment.