From f85a5f1824ff0878053e50ae43bf296bff41d463 Mon Sep 17 00:00:00 2001 From: ioangatop Date: Tue, 19 Mar 2024 10:35:42 +0100 Subject: [PATCH] Minor update on ci workflow (#314) * minor update on ci workflow * fix typo --- .github/workflows/CI.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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