mmv/.github/workflows/ci.yaml
2021-09-18 23:48:00 +09:00

26 lines
443 B
YAML

name: CI
on:
push:
branches:
- main
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@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Test
run: make test
- name: Lint
run: make lint