uuidstr url converter instead of shadowing django uuid (#1453) #599
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Coverage | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test_coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install Flit | |
run: pip install flit "django>=5.0" | |
- name: Install Dependencies | |
run: flit install --symlink | |
- name: Test | |
run: pytest --cov=ninja --cov-report=xml tests | |
- name: Coverage | |
uses: codecov/[email protected] |