feat: add draw support for ADF4382 and fix ADF4030 drawing #952
Workflow file for this run
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: Coverage | |
| on: push | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| architecture: x64 | |
| - run: pip install "nox[uv]==2025.2.9" | |
| - run: pip install poetry==1.2.2 | |
| - run: nox --sessions tests-3.10 coverage | |
| - name: Upload coverage reports | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./coverage.xml | |
| token: ${{secrets.CODECOV_TOKEN}} |