Kaynağa Gözat

Fix syntax.

Jelmer Vernooij 4 yıl önce
ebeveyn
işleme
e60104becb
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      .github/workflows/pythonpackage.yml

+ 2 - 2
.github/workflows/pythonpackage.yml

@@ -25,14 +25,14 @@ jobs:
     - name: Install mypy
       run: |
         pip install -U mypy
-      if: 'matrix.python-version != "pypy3"'
+      if: "matrix.python-version != 'pypy3'"
     - name: Style checks
       run: |
         python -m flake8
     - name: Typing checks
       run: |
         python -m mypy dulwich
-      if: 'matrix.python-version != "pypy3"'
+      if: "matrix.python-version != 'pypy3'"
     - name: Build
       run: |
         python setup.py build_ext -i