[Snyk] Security upgrade setuptools from 40.5.0 to 70.0.0 #84
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: Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: npm install | |
- name: run markdownlint | |
run: make markdownlint | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: install yamllint | |
run: make install-yamllint | |
- name: run yamllint | |
run: yamllint . -f github | |
misspell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: run misspell | |
run: make misspell | |
# docfx: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-dotnet@v1 | |
# with: | |
# dotnet-version: 6.0.x | |
# | |
# - name: install docfx | |
# run: dotnet tool update -g docfx --version "3.0.0-*" --add-source https://docfx.pkgs.visualstudio.com/docfx/_packaging/docs-public-packages/nuget/v3/index.json | |
# | |
# - name: run docfx | |
# run: docfx build --dry-run | |
markdownlinkcheck: | |
name: markdownlinkcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run link check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'no' | |
use-verbose-mode: 'yes' | |
config-file: '.github/.mlc_config.json' | |
sanity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run sanitycheck.py | |
run: python3 ./internal/tools/sanitycheck.py |