3838
3939 - name : Build Documentation
4040 run : |
41- poetry run python -m nox -s build- docs
41+ poetry run python -m nox -s docs:build
4242
4343 Lint :
4444 name : Linting (Python-${{ matrix.python-version }})
4747 strategy :
4848 fail-fast : false
4949 matrix :
50- python-version : [ "3.8", "3. 9", "3.10", "3.11" ]
50+ python-version : [ "3.9", "3.10", "3.11" ]
5151
5252 steps :
5353 - name : SCM Checkout
5959 python-version : ${{ matrix.python-version }}
6060
6161 - name : Run lint
62- run : poetry run nox -s lint
62+ run : poetry run nox -s lint:code
6363
6464 - name : Upload Artifacts
65657575 strategy :
7676 fail-fast : false
7777 matrix :
78- python-version : [ "3.8", "3. 9", "3.10", "3.11" ]
78+ python-version : [ "3.9", "3.10", "3.11" ]
7979
8080 steps :
8181 - name : SCM Checkout
8787 python-version : ${{ matrix.python-version }}
8888
8989 - name : Run type-check
90- run : poetry run nox -s type-check
90+ run : poetry run nox -s lint:typing
9191
9292 Security :
9393 name : Security Checks (Python-${{ matrix.python-version }})
9696 strategy :
9797 fail-fast : false
9898 matrix :
99- python-version : [ "3.8", "3. 9", "3.10", "3.11" ]
99+ python-version : [ "3.9", "3.10", "3.11" ]
100100
101101 steps :
102102 - name : SCM Checkout
@@ -108,7 +108,7 @@ jobs:
108108 python-version : ${{ matrix.python-version }}
109109
110110 - name : Run security linter
111- run : poetry run nox -s security
111+ run : poetry run nox -s lint: security
112112
113113 - name : Upload Artifacts
114114@@ -126,7 +126,7 @@ jobs:
126126 strategy :
127127 fail-fast : false
128128 matrix :
129- python-version : [ "3.8", "3. 9", "3.10", "3.11" ]
129+ python-version : [ "3.9", "3.10", "3.11" ]
130130 exasol-version : [ "7.1.9" ]
131131
132132 steps :
@@ -139,7 +139,7 @@ jobs:
139139 python-version : ${{ matrix.python-version }}
140140
141141 - name : Run Tests and Collect Coverage
142- run : poetry run nox -s coverage -- -- --db-version ${{ matrix.exasol-version }}
142+ run : poetry run nox -s test: coverage -- -- --db-version ${{ matrix.exasol-version }}
143143
144144 - name : Upload Artifacts
145145
0 commit comments