From 66b41d86e6f528108d8742d69716d8222e5a9c5e Mon Sep 17 00:00:00 2001 From: scito Date: Thu, 29 Dec 2022 21:52:54 +0100 Subject: [PATCH] ci: use ${{ }} for mypy python check --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 188fd60..dccc84d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,6 @@ jobs: - name: Type checking with mypy run: | mypy --strict *.py - if: matrix.python-version == '3.x' + if: ${{ matrix.python-version == '3.x' }} - name: Test with pytest run: pytest