diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a5738d1c..050cf767 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -17,13 +17,13 @@ jobs: with: python-version: "3.10" architecture: x64 - - name: Setting up NOX + - name: Setting up nox uses: wntrblm/nox@2024.03.02 with: python-versions: "3.10" - - name: Lint checks + - name: Performing lint checks run: nox -s lint - - name: Type checks + - name: Performing static type checks run: nox -s check tests: @@ -44,9 +44,9 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 - - name: Setting up NOX + - name: Setting up nox uses: wntrblm/nox@2024.03.02 with: python-versions: ${{ matrix.python-version }} - - name: Unit Tests + - name: Executing unit tests run: nox -s test