Update python-app.yml #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |