We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a197e13 commit 84738ceCopy full SHA for 84738ce
.github/workflows/ci.yaml
@@ -13,9 +13,9 @@ jobs:
13
python-version: ["3.10", "3.11", "3.12"]
14
15
steps:
16
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
17
- name: Set up Python
18
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
19
with:
20
python-version: ${{ matrix.python-version }}
21
cache: "pip"
@@ -24,6 +24,6 @@ jobs:
24
python -m pip install --upgrade pip
25
pip install -r requirements_dev.txt .
26
- name: Tests
27
- run: pytest --cov=switchbot --cov-report=term-missing --cov-report=xml tests
+ run: pytest --cov --cov-report=term-missing --cov-report=xml tests
28
- name: Upload coverage to Codecov
29
uses: codecov/codecov-action@v3
0 commit comments