Skip to content

Commit

Permalink
fix build no. 11 (reports)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 16, 2023
1 parent bbf2e94 commit 6f45ecf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9"]

steps:
- name: SCM Checkout
Expand All @@ -57,14 +57,20 @@ jobs:
- name: Run Tests
run: poetry run nox -s lint

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: .lint.txt
path: .lint.txt

type-check-job:
name: Type Checking (Python-${{ matrix.python-version }})
needs: [version-check-job]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9"]

steps:
- name: SCM Checkout
Expand All @@ -85,7 +91,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9"]
exasol-version: ["7.1.9"]

steps:
Expand All @@ -99,3 +105,9 @@ jobs:

- name: Run Tests
run: poetry run nox -s coverage -- -- --db-version ${{ matrix.exasol-version }}

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: .coverage
path: .coverage
2 changes: 1 addition & 1 deletion .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
ls -Rla
if [ -f .coverage/.coverage ]; then cp .coverage/.coverage ../; fi
if [ -f .lint.txt/.lint.txt ]; then cp .lint.txt/.lint.txt ../; fi
if [ -f .lint.txt/.lint.txt ]; then cp .lint.txt/.lint.txt ../ ; fi
- name: Generate Report
run: poetry run nox -s report -- -- --format json | tee metrics.json
Expand Down

0 comments on commit 6f45ecf

Please sign in to comment.