chore(version): bump version to 0.2.0-beta.8 #137
Workflow file for this run
This file contains 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
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: Test IPM | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Setup PDM | |
run: | | |
pip install pdm | |
pdm add pytest | |
- name: Install IPM | |
run: pdm install | |
- name: Test API | |
run: | | |
pdm run python -m pytest tests/ |