Skip to content

Prepare release

Prepare release #28

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
tags-ignore:
- 'v*' # Don't run workflow on release tags
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.18'
- name: Lint code
run: |
git submodule update --init --recursive go.mk
PATH=$(go env GOPATH)/bin:$PATH make lint