-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (44 loc) · 1021 Bytes
/
ci-test.yaml
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
name: CI
on:
pull_request:
permissions:
contents: read
jobs:
app:
name: App
concurrency:
group: app-${{ matrix.project }}-${{ needs.get-version.outputs[matrix.project] }}
strategy:
fail-fast: false
matrix:
project:
- api
- selfserve
- internal
uses: ./.github/workflows/php.yaml
with:
project: ${{ matrix.project }}
should-upload-artefact: true
artefact-name: app-${{ matrix.project}}-test
retention-days: 1
permissions:
contents: read
docker:
name: Docker
concurrency:
group: docker-${{ matrix.project }}-test
strategy:
fail-fast: false
matrix:
project:
- api
- selfserve
- internal
uses: ./.github/workflows/docker.yaml
with:
project: ${{ matrix.project }}
app-artefact-name: app-${{ matrix.project}}-test
should-upload-artefact-to-ecr: false
permissions:
contents: read
id-token: write