Skip to content

Add asymptotic fallback ranges (#65) #227

Add asymptotic fallback ranges (#65)

Add asymptotic fallback ranges (#65) #227

Workflow file for this run

name: Markdown
on:
push:
branches: [master, dev]
pull_request:
types: [review_requested, ready_for_review]
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Skip if unchanged
id: changed-files-specific
uses: tj-actions/changed-files@v41
with:
files: |
*.md
*.markdown
- name: Link Markdown
uses: gaurav-nelson/github-action-markdown-link-check@v1
if: steps.changed-files-specific.outputs.only_changed == 'true'
with:
config-file: '.github/mlc_config.json'
use-quiet-mode: "yes"