Add input with proper energ conservation. Modified filtering frequenc… #34
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
| # .github/workflows/CI.yml | |
| name: CI | |
| on: [push, pull_request] # Trigger on push and pull requests | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - run: pip install -r requirements_cpu.txt | |
| - run: python -m tests.smoke_test |