mirror of
https://github.com/cjdenio/jia.git
synced 2024-11-22 07:33:39 +00:00
15 lines
231 B
YAML
15 lines
231 B
YAML
name: Build
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.14
|
|
- run: make build
|