Skip to content

docs: fix plugin version #3

docs: fix plugin version

docs: fix plugin version #3

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
jobs:
main:
name: Main process
runs-on: ubuntu-latest
env:
GO_VERSION: 1.21
GOLANGCI_LINT_VERSION: v1.55.2
steps:
# https://github.com/marketplace/actions/checkout
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install tinygo
uses: acifani/setup-tinygo@v2
# https://golangci-lint.run/usage/install#other-ci
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }}
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}
- name: Check and get dependencies
run: |
go mod download
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: Build
run: make