Revert "DO-2284 / add workflow to allow remote triggering of userflow… #377
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 workflows | |
on: | |
push: | |
jobs: | |
python-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
src: "node-runner-cli" | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: RDXWorks-actions/checkout@main | |
- name: Check workflow files | |
uses: RDXWorks-actions/action-actionlint@main | |
with: | |
tool_name: actionlint | |
level: warning | |
reporter: github-check | |
filter_mode: added | |
fail_on_error: true |