Skip to content

Support processes in rendering HoloViews #190

Support processes in rendering HoloViews

Support processes in rendering HoloViews #190

Workflow file for this run

name: Build
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
hatch env create
# - name: Lint and typecheck
# run: |
# hatch run lint-check
- name: Test
run: |
hatch run test-cov-xml
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true