Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzhenglin authored Jul 31, 2024
1 parent 878a85f commit 9f97edb
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ on:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.12"]
include:
- os: macos-14
python-version: "3.9"
runs-on: ${{ matrix.os }}
steps:
- run: echo Hello World
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}
- run: python -m pip install .[test]
- name: Run test
- run: python -m pytest
Expand Down

0 comments on commit 9f97edb

Please sign in to comment.