27 lines
580 B
YAML
27 lines
580 B
YAML
on: [push]
|
|
|
|
name: Test Action
|
|
|
|
jobs:
|
|
Testing:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.7, 3.8, 3.9, "3.10"]
|
|
os: ["windows-latest", "ubuntu-latest"]
|
|
name: Test the action
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup PDM
|
|
uses: ./
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: pdm install -v
|
|
|
|
- name: Verify python version
|
|
run: python test.py
|
|
env:
|
|
PYTHON_VERSION: ${{ matrix.python-version }}
|