Skip to content

Handle sudo connection in the account view #62

Handle sudo connection in the account view

Handle sudo connection in the account view #62

Workflow file for this run

---
name: Install
on:
push:
pull_request:
jobs:
install:
name: Install distribution from source
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: python -mpip install --upgrade wheel
- name: Install Ice
run: pip install https://github.com/ome/zeroc-ice-py-github-ci/releases/download/0.2.0/zeroc_ice-3.6.5-cp38-cp38-linux_x86_64.whl
- name: Run tests
run: python setup.py sdist && pip install dist/omero-web*gz
- name: Test import
run: python -c "import omeroweb.version as owv; print(owv.omeroweb_version)"