Restructure cursor call to satisfy Black 26 chained-call wrap rule #640
This file contains hidden or 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: continuous_integration | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12.9' | |
| - name: Install Dependencies | |
| run: | |
| pip install -r requirements.txt | |
| - name: test_script | |
| run: python -m unittest |