Skip to content

Merge pull request #89 from yoheimuta/support-utf8-bom #12

Merge pull request #89 from yoheimuta/support-utf8-bom

Merge pull request #89 from yoheimuta/support-utf8-bom #12

Workflow file for this run

# Runs lint and tests on master and feature branches.
name: Lint and test
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dev deps
run: make dev/install/dep
- name: Lint
run: make test/lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run tests
run: make test