Disable Attach function and remove dep to go.bug.st/serial.v1 #4521
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/check-markdown-task.md | |
name: Check Markdown | |
env: | |
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax | |
GO_VERSION: "1.17" | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows | |
on: | |
push: | |
paths: | |
- ".github/workflows/check-markdown-task.ya?ml" | |
- ".markdown-link-check.json" | |
- "Taskfile.ya?ml" | |
- "**/.markdownlint*" | |
- "**.go" | |
- "**.mdx?" | |
- "**.mkdn" | |
- "**.mdown" | |
- "**.markdown" | |
- "rpc/**" | |
pull_request: | |
paths: | |
- ".github/workflows/check-markdown-task.ya?ml" | |
- ".markdown-link-check.json" | |
- "Taskfile.ya?ml" | |
- "**/.markdownlint*" | |
- "**.go" | |
- "**.mdx?" | |
- "**.mkdn" | |
- "**.mdown" | |
- "**.markdown" | |
- "rpc/**" | |
schedule: | |
# Run every Tuesday at 8 AM UTC to catch breakage caused by external changes. | |
- cron: "0 8 * * TUE" | |
workflow_dispatch: | |
repository_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Initialize markdownlint-cli problem matcher | |
uses: xt0rted/markdownlint-problem-matcher@v2 | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: 3.x | |
- name: Lint | |
run: task markdown:lint | |
links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Install Go dependencies | |
run: go install github.com/pseudomuto/protoc-gen-doc/cmd/[email protected] | |
- name: Install protoc compiler | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: 3.x | |
- name: Check links | |
run: task --silent markdown:check-links |