diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6933921..920fed0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -43,7 +43,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10"] steps: - name: SCM Checkout @@ -70,7 +70,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10"] steps: - name: SCM Checkout @@ -91,7 +91,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10"] exasol-version: ["7.1.9"] steps: diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index bca392c..7b48e8e 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -29,14 +29,14 @@ jobs: path: ./artifacts - name: Copy Artifacts into Root Folder - working-directory: ./artifacts + # working-directory: ./artifacts run: | - cp .coverage/.coverage ../ - cp .lint.txt/.lint.txt ../ - pwd - ls -l .. - pwd - ls -l + cp ./artifacts/.coverage/.coverage . + cp ./artifacts/.lint.txt/.lint.txt . + echo listing folder artifacts" + ls -Ral artifacts + echo listing folder . + ls -al - name: Generate Report run: poetry run nox -s report -- -- --format json | tee metrics.json