Skip to content

Commit 2c97d11

Browse files
committed
Update CI workflow to specify exact versions for flake8, black, and isort; change Codecov error handling
1 parent 6386ec9 commit 2c97d11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install -r requirements.txt
2929
pip install -e .
30-
pip install pytest pytest-cov flake8 black isort
30+
pip install pytest pytest-cov flake8==7.0.0 black==24.3.0 isort==5.13.2
3131
- name: Lint (flake8)
3232
run: flake8 .
3333
- name: Format check (black)
@@ -40,7 +40,7 @@ jobs:
4040
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
4141
uses: codecov/codecov-action@v4
4242
with:
43-
fail_ci_if_error: true
43+
fail_ci_if_error: false
4444
name: CI
4545

4646
on:

0 commit comments

Comments
 (0)