fix pdm.lock #24
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: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
- '**/*' | |
name: Test Action | |
jobs: | |
testing: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
os: [ "ubuntu-latest" ] | |
name: CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: true | |
- name: Install dependencies | |
run: pdm install -v && pdm info | |
- name: Lint | |
run: make lint | |
- name: Test | |
run: make test | |
- name: Publish on git tags | |
run: make publish | |
if: | | |
startsWith(github.ref, 'refs/tags/') && | |
github.ref == 'refs/heads/main' && | |
matrix.python-version == '3.8' | |
env: | |
PYPI_UNAME: __token__ | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |