Skip to content

Add simple workflows for GHA #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Dec 3, 2024
Merged
Prev Previous commit
fixes
  • Loading branch information
bdraco committed Dec 3, 2024
commit f0de2f003d1c98bc8f90f6050106bd4a6fa8e9d8
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# cache: "pip"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt .
- uses: pre-commit/action@v3.0.1
- name: Pre-commit
uses: pre-commit/action@v3.0.1
- name: Tests
run: pytest --cov=onvif --cov-report=term-missing --cov-report=xml tests
- name: Upload coverage to Codecov
Expand Down
Loading