diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f33c147..f146e1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,12 +1,6 @@ -name: Run tests +name: Run Tests -on: - push: - branches: - - master - pull_request: - branches: - - master +on: [push, pull_request] jobs: test: @@ -23,12 +17,9 @@ jobs: - name: Install dependencies run: | - python -m venv venv - source venv/bin/activate python -m pip install --upgrade pip pip install -r requirements.txt - name: Run tests run: | - source venv/bin/activate pytest