23 lines
605 B
YAML
23 lines
605 B
YAML
name: E2E
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}} - ${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
testing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: E2E Testing
|
|
run: |
|
|
sudo curl -L https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
|
|
sudo chmod u+x /usr/local/bin/docker-compose
|
|
docker compose -f docker-compose-testing.yml up --build testing --exit-code-from testing --remove-orphans
|