Clean up demo homepage #49
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: tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install | |
| run: python -m pip install -U pip && python -m pip install -r requirements-dev.txt | |
| - name: Package sanity | |
| run: python -m pip check && python -m compileall refund_demo | |
| - name: Lint | |
| run: ruff check refund_demo tests | |
| - name: Test | |
| run: pytest | |
| - name: CLI smoke | |
| run: python -m refund_demo.cli --input samples/inputs/happy_path.json |