Skip to content

Update python-app.yml #6

Update python-app.yml

Update python-app.yml #6

Workflow file for this run

name: OMERO
on:
push:
pull_request:
jobs:
test:
name: Run integration tests against OMERO
runs-on: ubuntu-latest
steps:
- name: Checkout omero-test-infra
uses: actions/checkout@main
with:
repository: ome/omero-test-infra
path: .omero
- name: checkout arc_omero
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Build arc_omero
run: |
python -m venv test_env
source test_env/bin/activate
pip install --upgrade pip
pip install "omero-cli-transfer @ git+https://github.com/MicheleBortol/omero-cli-transfer.git"
pip install ".[dev]"
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."