Skip to content

Deprecate omeroweb.custom_forms.NonASCIIForm #41

Deprecate omeroweb.custom_forms.NonASCIIForm

Deprecate omeroweb.custom_forms.NonASCIIForm #41

Workflow file for this run

---
name: Tox
on:
push:
pull_request:
jobs:
test:
name: Run tox tests
strategy:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -mpip install --upgrade wheel pytest tox
- name: Get tox target
id: toxtarget
run: |
py=$(echo ${{ matrix.python-version }} | tr -d .)
echo "py=$py" >> $GITHUB_OUTPUT
- name: Run tests
run: tox -e py${{ steps.toxtarget.outputs.py }}