-
Notifications
You must be signed in to change notification settings - Fork 5
56 lines (49 loc) · 1.38 KB
/
e2e-test.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: E2E Tests
on:
pull_request:
branches:
- '*'
paths-ignore:
- '.github/workflows/deploy.yml'
- '.github/workflows/docs-release.yml'
- '.github/workflows/outdated.yml'
- '.github/workflows/comment-tag-report.yml'
- '.github/workflows/pr-agent.yml'
- '.github/CODEOWNERS'
- 'config/**'
- 'README.md'
- 'LICENSE'
- 'CONTRIBUTING.md'
- 'utils/slack-notifiers/**'
workflow_dispatch:
push: # Rebuild cache policy
branches:
- 'main'
paths:
- 'Cargo.lock'
- 'Cargo.toml'
jobs:
e2e-stratus:
name: E2E Stratus in-memory
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus'
concurrency:
group: ${{ github.workflow }}-inmemory-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-stratus-postgres:
name: E2E Stratus Postgres
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-postgres'
concurrency:
group: ${{ github.workflow }}-postgres-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-stratus-rocks:
name: E2E Stratus Rocks
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-rocks'
concurrency:
group: ${{ github.workflow }}-rocks-${{ github.ref || github.run_id }}
cancel-in-progress: true