Skip to content

Commit

Permalink
Merge branch 'with-action' into feat-add-type-hints
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Oct 28, 2023
2 parents cf94733 + cde2c4e commit 97ec080
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PDM Test

on:
push:
pull_request:

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip pdm
pdm install
- name: Run tests
run: |
pdm test
2 changes: 1 addition & 1 deletion tests/test_hypotheses.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)


bar = tqdm(mininterval=0, dynamic_ncols=True)
bar = tqdm(mininterval=0, ncols=200)
FINE_JSON_EXAMPLES = 333
PARTIAL_JSON_EXAMPLES = 333

Expand Down

0 comments on commit 97ec080

Please sign in to comment.