Python diff of squares #961
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
--- | |
# | |
# .github/workflows/woke-pr.yml | |
# | |
# https://github.com/get-woke/woke-action-reviewdog | |
# | |
name: Woke (push-request) | |
on: [pull_request] # yamllint disable-line rule:truthy | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
woke: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
id: checkout-repo | |
uses: actions/checkout@v3 | |
- name: woke with reviewdog | |
id: woke | |
uses: get-woke/woke-action-reviewdog@v0 | |
with: | |
github-token: ${{ github.token }} | |
# [github-pr-check, github-check, github-pr-review]. | |
reporter: github-pr-review | |
# GitHub Status Check won't become failure with warning. | |
level: warning | |
# Enable this to fail the check when violations are found | |
fail-on-error: false |