fix(README): broken links #2337
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: TAG-Security-Linter | |
# Run this workflow on every PR to main | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup | |
run: make setup | |
Lint: | |
runs-on: ubuntu-latest | |
needs: Setup | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Lint | |
run: make lint | |
Spelling: | |
runs-on: ubuntu-latest | |
needs: Setup | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Spelling | |
run: make spelling | |
Links: | |
runs-on: ubuntu-latest | |
needs: Setup | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Links | |
run: make links |