Update to version that uses wb2s chip and tuya-cloudcutter instead of… #1554
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
markdown_lint: | |
name: Markdown Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: markdownlint-cli | |
uses: nosborn/github-action-markdown-cli@v1.1.1 | |
with: | |
config_file: ".markdownlintrc" | |
files: . | |
yaml_lint: | |
name: YAML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: yamllint-cli | |
uses: "docker://pipelinecomponents/yamllint:latest" | |
with: | |
args: yamllint -c .yamllintrc . |