-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (30 loc) · 1.01 KB
/
e2e.yml
File metadata and controls
37 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: End to End Example Apps
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
e2e-docker:
name: E2E Dockerized Apps
timeout-minutes: 60
runs-on: ubuntu-22.04-8core-32gb
strategy:
matrix:
app: ['dotnet', 'dotnet4', 'go', 'python', 'ruby']
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Install dependencies
working-directory: ./e2e/tests
run: poetry install --all-extras
- name: Start docker containers & run sdk e2e test
working-directory: ./e2e/tests/src
run: poetry run python app_runner.py ${{ matrix.app }}