Skip to content

first commit

first commit #4

Workflow file for this run

name: Lint
on:
push:
branches:
- "*"
tags:
- "*"
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Install linter
run: |
make install_linter
- name: Prepary deps
run: |
echo -e "machine github.com\n login ${{ secrets.GITHUBTOKEN }}" > ~/.netrc
make get_deps
- name: Run linter
run: make lint-todo