diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e87c473..602cb4b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,13 +8,12 @@ jobs: unit-tests: runs-on: ubuntu-latest steps: - - name: Setup Python + - uses: actions/checkout@v2 + - name: "Setup Python" uses: actions/setup-python@v4.3.1 with: python-version: 3.11 - - - name: Install test dependencies + - name: "Install test dependencies" run: pip install -r requirements/tests.txt - - - name: Run unit tests + - name: "Run unit tests" run: python -m pytest tests/