-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (44 loc) · 1.83 KB
/
pullrequest-verify.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
49
50
51
52
53
54
55
56
name: Verifies PR are ready for merge
on:
pull_request:
branches:
- main
jobs:
verify-devcontainer:
uses: project-origin/.github/.github/workflows/reusable-verify-devcontainer.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
verify-code:
uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
verify-renovate-config:
uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
verify-chart:
uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
verify-container-build:
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45
with:
imagename: ghcr.io/project-origin/registry-server
version: test
context: .
dockerfile: ./Registry.Dockerfile
push: false
verify-concordium:
name: Verify Concordium integration
runs-on: ubuntu-24.04
environment: testnet
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup .NET Core SDK from global.json
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4
- name: Run integration tests
env:
AccountAddress: ${{ secrets.AccountAddress }}
AccountKey: ${{ secrets.AccountKey }}
run: make concordium-tests
verify-performance:
name: Verify performance
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup .NET Core SDK from global.json
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4
- name: Verify performance
run: make verify-performance