feat: introduce nyc weather features to feature-engineering on fabric single-tech sample #657
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: Documentation Lint | |
on: | |
push: | |
branches: | |
- main | |
- single-tech/databricks | |
pull_request: | |
branches: | |
- main | |
- single-tech/databricks | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
config-file: '.markdownlinkcheck.json' | |
file-extension: '.md' | |
markdown-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker://avtodev/markdown-lint:v1 | |
with: | |
args: '**/*.md' | |
config: '.markdownlint.yml' |