We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8e29a6 commit 8b360d5Copy full SHA for 8b360d5
1 file changed
.github/workflows/python-package.yml
@@ -23,11 +23,16 @@ jobs:
23
uses: actions/setup-python@v2
24
with:
25
python-version: ${{ matrix.python-version }}
26
+
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
python -m pip install pytest pytest-cov
31
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
33
- name: Test with pytest
34
35
python3 -m pytest --cov=fastapi_featureflags -v tests/ --disable-warnings
36
37
+ - name: CodeCov
38
+ run: bash <(curl -s https://codecov.io/bash)
0 commit comments