fix(docker): build publishable image on python:3.13-slim #16
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: "3.11" | |
| - uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: "20" | |
| - name: Install package | |
| run: python -m pip install -e . pytest | |
| - name: Run Node installer tests | |
| run: npm test | |
| - name: Run tests | |
| # Node must be on PATH first: the slug-parity test shells out to it. | |
| run: pytest -q |