π€ Bump pdm from 2.21.0 to 2.22.0 #116
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
name: "Packaging" | |
on: [pull_request] | |
jobs: | |
packaging: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Create temporary version tag | |
run: | | |
if [ -z "$(git tag)" ]; then | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git tag -a v0.0.0 -m "temporary tag" | |
fi | |
- name: Run packaging test | |
run: | | |
tox -e packaging |