range-gen/.github/workflows/build.yml

24 lines
392 B
YAML
Raw Normal View History

2020-11-03 12:42:08 +00:00
name: build
2020-11-03 12:40:05 +00:00
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.13.0'
- name: Build
run: make -j $(nproc) compile