Skip to content

tweak: readme

tweak: readme #18

Workflow file for this run

# name of the action
name: build
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
build:
runs-on: ubuntu-latest
container:
image: golang:latest
steps:
- name: clone
uses: actions/checkout@v2
- name: build
run: |
make build