File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11` ` ` yaml
2- name: Python Package CI
2+ name: Python Package CI
33
4- on: [push, pull_request]
4+ on: [push, pull_request]
55
6- jobs:
7- build:
8- runs-on: ubuntu-latest
9- strategy:
10- matrix:
11- python-version: ["3.8", "3.11"]
6+ jobs:
7+ build:
8+ runs-on: ubuntu-latest
9+ strategy:
10+ matrix:
11+ python-version: ["3.8", "3.11"]
1212
13- steps:
14- - uses: actions/checkout@v4
15- - name: Set up Python ${{ matrix.python-version }}
16- uses: actions/setup-python@v4
17- with:
18- python-version: ${{ matrix.python-version }}
19- - name: Install dependencies
20- run: |
21- python -m pip install --upgrade pip
22- pip install -e .[test]
23- - name: Test with pytest
24- run: |
25- pytest
13+ steps:
14+ - uses: actions/checkout@v4
15+ - name: Set up Python ${{ matrix.python-version }}
16+ uses: actions/setup-python@v4
17+ with:
18+ python-version: ${{ matrix.python-version }}
19+ - name: Install dependencies
20+ run: |
21+ python -m pip install --upgrade pip
22+ pip install -e .[test]
23+ - name: Test with pytest
24+ run: |
25+ pytest
2626 ` ` `
You can’t perform that action at this time.
0 commit comments