-
-
Notifications
You must be signed in to change notification settings - Fork 16
39 lines (34 loc) · 1022 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
on:
push:
branches: [main]
pull_request:
name: Test Action
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [windows-latest, ubuntu-latest, macos-latest]
name: Test the action
steps:
- uses: actions/checkout@v3
- name: Setup PDM
uses: ./
id: setup-pdm
with:
python-version: ${{ matrix.python-version }}
cache: true
allow-python-prereleases: true
- name: Check output
run: |
echo ${{ steps.setup-pdm.outputs.pdm-bin }}
echo ${{ steps.setup-pdm.outputs.pdm-version }}
echo ${{ steps.setup-pdm.outputs.python-path }}
echo ${{ steps.setup-pdm.outputs.python-version }}
- name: Install dependencies
run: pdm install -v && pdm info
- name: Verify python version
run: pdm run python test.py
env:
PYTHON_VERSION: ${{ matrix.python-version }}