-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable CI #1
Comments
Maybe we can use your |
Good idea 👍 |
I've made the initial setup of CI, just with
|
It's does not have the option to fail, but we can remove the default I finished the step: jobs:
misspell_check:
name: misspell check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: misspell run
uses: sobolevn/misspell-fixer-action@master
with:
options: '-rsv .'
- name: check misspell changes
run: |
[ -n "$(find . -name 'README.md.*.BAK' | head -1)" ] && exit 1 || echo exit 0 Here the action is broken because we have a misspell: https://github.com/dry-python/functional-jargon-python/runs/963116794?check_suite_focus=true |
Awesome! |
I found this |
We use
remark-lint
with plugins formd
files.Example: https://github.com/sobolevn/awesome-cryptography/
We can also use
flake8
for code-blocks I guess.And
pytest
to run doctests tests (if any).The text was updated successfully, but these errors were encountered: