From af7eee87442bd8c2ce341dba6550f1b9065af8d0 Mon Sep 17 00:00:00 2001 From: Neeraj Kashyap Date: Sat, 18 Dec 2021 08:59:29 -0800 Subject: [PATCH] Fixed and simplified test action --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 373b9c2..39a6e49 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,19 +11,16 @@ on: jobs: build: runs-on: ubuntu-20.04 - strategy: - matrix: - python-version: [3.9] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: "3.9" - name: Upgrade pip run: pip install -U pip - name: Install dev dependencies run: pip install -e .[dev] - name: Black syntax check - run: black --check moonworm/ + run: black --check dao/ - name: Run unit tests run: sh test.sh