monero-exporter/.github/workflows/go.yml

24 lines
401 B
YAML
Raw Normal View History

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build
run: make install
- name: Test
run: make test
- name: Lint
run: make lint