From f0386efaf68e1a3297dc3fe0d5c141e4f4e2cb0d Mon Sep 17 00:00:00 2001 From: Christopher Pickering Date: Tue, 13 Jul 2021 10:48:36 -0500 Subject: [PATCH] fixed indent --- .github/workflows/test.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54f9758..d69a105 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,26 +2,26 @@ name: test on: [push] jobs: - build: + test: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.6, 3.7, 3.8, 3.9] - runs-on: ${{ matrix.os }} - steps: - - name: checkout - uses: actions/checkout@v2 - - name: setup python ${{ matrix.python-version }} on ${{ matrix.os }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: install deps - run: python -m pip install tox - - name: test - run: tox -p - - name: upload cov - uses: codecov/codecov-action@v1 - with: - files: ./coverage.xml - fail_ci_if_error: true - verbose: true + runs-on: ${{ matrix.os }} + steps: + - name: checkout + uses: actions/checkout@v2 + - name: setup python ${{ matrix.python-version }} on ${{ matrix.os }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + - name: install deps + run: python -m pip install tox + - name: test + run: tox -p + - name: upload cov + uses: codecov/codecov-action@v1 + with: + files: ./coverage.xml + fail_ci_if_error: true + verbose: true