Make t and n optional arguments in store_checkpoint #418
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: Lint scripts and docs | |
on: [push, pull_request] | |
jobs: | |
check_markdown_files: | |
name: Lint scripts and docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Lint markdown files (markdownlint) | |
uses: articulate/actions-markdownlint@v1 | |
with: | |
config: .markdownlint.json | |
files: '.' | |
ignore: changelog-entries | |
- name: Check links in markdown files (markdown-link-check) | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'no' | |
config-file: '.markdown-link-check-config.json' |