Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cofob committed Feb 20, 2022
1 parent ee9cd6f commit 5672590
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@ jobs:
- name: Apply Black codestyle
if: ${{ matrix.python-version == '3.10' }}
continue-on-error: true
run: |
poetry run black .
git commit -am "Applied Black code style :pencil2:"
git commit -am "Applied Black code style :pencil2:" || true
- name: Update poetry
if: ${{ matrix.python-version == '3.10' }}
continue-on-error: true
run: |
poetry update
git commit -am "Update poetry.lock :chart_with_upwards_trend:"
git commit -am "Update poetry.lock :chart_with_upwards_trend:" || true
- name: Push changes
if: ${{ matrix.python-version == '3.10' }}
Expand Down

0 comments on commit 5672590

Please sign in to comment.