From 43fdbcc39765c28108ffba427412bc967d3294f2 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Thu, 13 Feb 2020 21:32:06 -0700 Subject: [PATCH] fix gh actions syntax error --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc4aeca..33ec5d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,8 @@ jobs: services: redis: image: redis - ports: [6379:6379] + ports: + - 6379:6379 steps: - name: Setup Python 3.6 uses: actions/setup-python@v1