Skip to content

Initial commit

Initial commit #1

name: Integration Tests
on:
push:
branches: ["main", "dev"]
pull_request:
branches: [ "main", "dev"]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
IntegrationTests:
runs-on: ubuntu-latest
container:
image: {your_base_image_here}

Check failure on line 21 in .github/workflows/test_integration.yml

View workflow run for this annotation

GitHub Actions / Integration Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test_integration.yml (Line: 21, Col: 14): A mapping was not expected
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install poetry
run: python3 -m pip install poetry
- name: Install dependencies and run tests
run: |
export SIMVUE_URL=${{ secrets.SIMVUE_URL }}
export SIMVUE_TOKEN=${{ secrets.SIMVUE_TOKEN }}
poetry install --all-extras
poetry run pytest tests/integration