Skip to content

Commit

Permalink
update dev tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sdabhi23 committed Jan 27, 2024
1 parent 1dbcb5d commit 0aed9be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/dev-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,22 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --cov=bsedata --no-cov-on-fail --cov-report=xml
- name: Upload to codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 0aed9be

Please sign in to comment.