Skip to content

build: linter skip tsets #48

build: linter skip tsets

build: linter skip tsets #48

Workflow file for this run

name: CI
on:
pull_request:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Markup Link Checker (mlc)
uses: becheran/[email protected]
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: codecov/codecov-action@v1
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
args: --tests=false --timeout=10m
test-and-release:
runs-on: ubuntu-latest
needs: [check-links]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Test
run: go test ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}