feat(bundles): create lfx-bundles metapackage skeleton #32
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 Scripts Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "scripts/ci/**" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Test CI release scripts | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: pip install pytest requests packaging | |
| - name: Run CI script tests | |
| run: python -m pytest scripts/ci/ -v |