Skip to content

setup pdm in ci

setup pdm in ci #153

Workflow file for this run

---
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.x']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: pdm-project/setup-pdm@v3
- name: install dependencies
run: |
sudo apt-get install gettext -y
- name: Test installation
run: |
pdm install