docs: Added Dash example. #125
Workflow file for this run
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: Pull Request | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: make deps | |
- run: make install | |
- run: make test | |
# Run coverage on one of the builds, doesn't matter which | |
- if: ${{ matrix.python-version == '3.12' }} | |
run: make cov-xml | |
- if: ${{ matrix.python-version == '3.12' }} | |
uses: orgoro/coverage@v3.1 | |
with: | |
coverageFile: coverage.xml | |
thresholdAll: 0.8 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: make deps | |
- run: make lint |