Skip to content

Commit

Permalink
Add dependency install
Browse files Browse the repository at this point in the history
  • Loading branch information
fronzbot authored Jun 7, 2024
1 parent a3eb59c commit dd578c9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ jobs:
matrix:
python-version: ['3.11']
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install tox
- name: Run Coverage
run: |
tox -r -e cov
Expand Down

0 comments on commit dd578c9

Please sign in to comment.