Skip to content

Commit

Permalink
[chore] update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed May 13, 2024
1 parent 3114ad1 commit a705e8d
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: PDM Test
name: pytest & hypothesis

on:
push:
pull_request:
on: [push, pull_request, workflow_dispatch]

jobs:
test:
Expand All @@ -12,17 +10,22 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"]
exclude:
- os: macos-latest
python-version: "3.7"
- os: macos-latest
python-version: "pypy3.7"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup PDM and Python ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@v3
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
npm i -g pyright
pdm install --group playground --quiet --no-editable
pdm install --group playground --quiet
- name: Run tests
run: |
pdm test
Expand Down

0 comments on commit a705e8d

Please sign in to comment.