Skip to content

Merge pull request #8 from 5G-MAG/feature/docker-compose #5

Merge pull request #8 from 5G-MAG/feature/docker-compose

Merge pull request #8 from 5G-MAG/feature/docker-compose #5

name: Integration Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
integration-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-attempts: 3

Check failure on line 15 in .github/workflows/integration-test.yml

View workflow run for this annotation

GitHub Actions / Integration Tests

Invalid workflow file

The workflow is not valid. .github/workflows/integration-test.yml (Line: 15, Col: 7): Unexpected value 'max-attempts'
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker-compose build
- name: Run Integration Tests
run: |
docker-compose up -d
docker-compose exec rt-5gms-m1-management-ui sh -c "cd tests && pytest integration_test.py"
docker-compose down