Skip to content

Drop jupyter helm chart #2026

Drop jupyter helm chart

Drop jupyter helm chart #2026

Workflow file for this run

name: Client verify process
on:
pull_request:
jobs:
verify-client:
name: lint, test
runs-on: ubuntu-latest
strategy:
fail-fast: false # keep running if one leg fails
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Set up tox environment
run: |
pver=${{ matrix.python-version }}
tox_env="-epy${pver/./}"
echo tox_env
echo TOX_ENV=$tox_env >> $GITHUB_ENV
- name: Install tox
run: |
pip install tox
- name: Run styles check
run: tox -elint
- name: Test using tox environment
run: |
tox ${{ env.TOX_ENV }}