chore: make README more up to date #50
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: Build & Test package | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build_and_test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Follows the version defined in `pyproject.toml` up to the latest version | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install PDM | |
| uses: pdm-project/setup-pdm@v4 | |
| - name: Cache the Virtual Env | |
| uses: actions/cache@v4 | |
| with: | |
| path: ./.venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }} | |
| - name: Install the project dependencies | |
| run: pdm install -d | |
| - name: Build the project | |
| run: pdm build | |
| - name: Run the Unit tests | |
| run: pdm run test -- -v |