Event basics #43
Workflow file for this run
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
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
misspell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Misspell Install | |
run: make install-misspell | |
- name: Misspell check | |
run: make misspell | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Tools | |
run: | | |
make install-markdown-lint | |
make install-markdown-link-check | |
- name: Run Tools | |
run: | | |
make markdown-lint | |
# Disabled for the moment because too many requests to github.com | |
# and we receive errors for valid links. | |
# make enforce-markdown-link-check |