Merge pull request #38 from open-cradle/async_thinknode_ctx_prototype #510
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: Python | |
on: [push, pull_request] | |
jobs: | |
python: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install | |
run: | | |
sudo pip3 install flake8 mypy pytest | |
- name: Test | |
run: | | |
cd python | |
flake8 scripts src tests | |
mypy scripts src tests |