Skip to content

Commit

Permalink
[fix] Update test action config
Browse files Browse the repository at this point in the history
  • Loading branch information
tamoyan committed Jul 10, 2024
1 parent 2fcc1b8 commit 4eee24d
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,22 +71,19 @@ jobs:
test:
runs-on: ubuntu-latest
needs: linter
strategy:
matrix:
python-version: [3.9]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -v -r requirements.txt
pip install -v -r requirements-dev.txt
- name: Run tests
run: |
pytest

0 comments on commit 4eee24d

Please sign in to comment.