Skip to content

Update version

Update version #496

Workflow file for this run

name: CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Check format
run: make check-fmt
- name: Build
run: go build .
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
only-new-issues: true
- name: Test
run: make test
lint-install-script:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run ShellCheck
run: shellcheck ./install.sh