Skip to content

Fix indent in python-app.yml #2

Fix indent in python-app.yml

Fix indent in python-app.yml #2

Workflow file for this run

name: OMERO

Check failure on line 1 in .github/workflows/python-app.yml

GitHub Actions / .github/workflows/python-app.yml

Invalid workflow file

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