name: 🧪 Run Tests on: push: workflow_call: workflow_dispatch: jobs: run-tests: runs-on: ubuntu-latest strategy: matrix: python-version: - '3.8' - '3.9' - '3.10' - '3.11' steps: - uses: actions/checkout@v4 - name: Set up PDM uses: pdm-project/setup-pdm@v3 with: python-version: ${{ matrix.python-version}} - name: Install dependencies run: pdm sync -d -G test - name: Run Tests run: pdm run -v pytest tests