@@ -5,8 +5,6 @@ name: lint, style, and tests
55
66on :
77 pull_request :
8- branches :
9- - main
108
119jobs :
1210 style :
@@ -77,25 +75,25 @@ jobs:
7775 run : |
7876 isort --check waveorder
7977
80- tests :
81- needs : [style, isort] # lint
82- runs-on : ubuntu-latest
83- strategy :
84- matrix :
85- python-version : ["3.10", "3.11", "3.12"]
78+ # needs: [style, isort] # lint
79+ # runs-on: ubuntu-latest
80+ # strategy:
81+ # matrix:
82+ # python-version: ["3.10", "3.11", "3.12"]
8683
87- steps :
88- - uses : actions/checkout@v3
84+ # steps:
85+ # - uses: actions/checkout@v3
8986
90- - uses : actions/setup-python@v4
91- with :
92- python-version : ${{ matrix.python-version }}
87+ # - uses: actions/setup-python@v4
88+ # with:
89+ # python-version: ${{ matrix.python-version }}
9390
94- - name : Install dependencies
95- run : |
96- python -m pip install --upgrade pip
97- pip install ".[dev]"
91+ # - name: Install dependencies
92+ # run: |
93+ # python -m pip install --upgrade pip
94+ # pip install ".[all, dev]"
9895
99- - name : Test with pytest
100- run : |
101- pytest -v --cov=./ --cov-report=xml
96+ # - name: Test with pytest
97+ # run: |
98+ # pytest -v
99+ # pytest -v --cov=./ --cov-report=xml
0 commit comments