Skip to content

fix: Find rye pythons with and without install directory (#25) #76

fix: Find rye pythons with and without install directory (#25)

fix: Find rye pythons with and without install directory (#25) #76

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- "*.md"
push:
branches:
- main
paths-ignore:
- "*.md"
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64]
include:
- python-version: "3.10"
os: windows-latest
arch: x86
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}
cache: "true"
- name: Install packages
run: pdm install
- name: Run Integration
run: pdm run findpython --all -v
- name: Run Tests
run: pdm run pytest tests