Turns out that was important

This commit is contained in:
Andrew Cassidy 2024-08-21 22:39:25 -07:00
parent e701a33ce5
commit fe3bd2f604

View File

@ -33,6 +33,9 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install module
run: python -m pip install .
- name: Run Unit Tests - name: Run Unit Tests
run: python -m unittest -v run: python -m unittest -v
@ -41,9 +44,9 @@ jobs:
uses: ./ uses: ./
deploy: deploy:
# needs: test needs: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4