Fix Xilinx drawing fetures for standalone model #667
This file contains 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@v1 | |
with: | |
python-version: '3.8' | |
architecture: x64 | |
- run: pip install nox==2022.8.7 | |
- run: pip install poetry==1.2.2 | |
- run: nox --sessions tests-3.8 coverage | |
env: | |
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} |