diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7bde9b9..99eeefe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,32 +3,7 @@ name: CI on: push jobs: - linting: - runs-on: ubuntu-latest - steps: - #---------------------------------------------- - # check-out repo and set-up python - #---------------------------------------------- - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - #---------------------------------------------- - # load pip cache if cache exists - #---------------------------------------------- - - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip - restore-keys: ${{ runner.os }}-pip - #---------------------------------------------- - # install and run linters - #---------------------------------------------- - - run: python -m pip install black flake8 isort - - run: | - flake8 . - black . --check - isort . test: - needs: linting strategy: fail-fast: true matrix: