summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2021-01-18 13:50:03 -0800
committerGitHub <noreply@github.com>2021-01-18 13:50:03 -0800
commit000102ef9b617e3da1f99d0b637602205304db11 (patch)
tree26c564e599edcf85e703db3a1f4b11523db5c4f8 /.github
parent2a5e3df0d707405b7dd6769d1f6ab58845176614 (diff)
Conditional didn't work in CI. (#1237)
* Conditional didn't work in CI. * Try to fix flaky exit.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 258e074e..ce54d6f5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -57,7 +57,7 @@ jobs:
- name: Run Black
run: pip install black && black --check .
- if: ${{ matrix.python_version == '3.6' }}
+ if: matrix.python-version == '3.6'
- name: Coverage
run: |