Create master_zip_tob.sh #3483
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: Lint | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| - name: Install packages | |
| run: | | |
| pip install . | |
| pip install -r requirements-dev.txt | |
| - name: pre-commit | |
| run: pre-commit run --all-files | |
| - name: Run-tests | |
| run: python -m unittest test/test_analysis_runner.py |