Skip to content

Commit

Permalink
rozdelit na rozbite a nerozbite
Browse files Browse the repository at this point in the history
  • Loading branch information
kokes committed Dec 6, 2023
1 parent 49c3cbc commit 1eecfa6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/partial.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false # dokud debugujem joby
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-latest']
python-version: ['3.12', '3.8'] # na partial nam staci nejnovejsi a nejstarsi verze
Expand All @@ -30,6 +30,11 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run partial processing
continue-on-error: ${{ matrix.module == "red" || matrix.module == "zakazky" || matrix.module == "eufondy" }}
if: matrix.module != 'red' && matrix.module != 'zakazky' && matrix.module != 'eufondy'
run: |
python3 main.py --connstring sqlite:///data.db --partial ${{ matrix.module }}
- name: Run partial processing (broken jobs)
if: matrix.module == 'red' || matrix.module == 'zakazky' || matrix.module == 'eufondy'
continue-on-error: true # TODO: mozna xfail nejak?
run: |
python3 main.py --connstring sqlite:///data.db --partial ${{ matrix.module }}

0 comments on commit 1eecfa6

Please sign in to comment.