Update project-origin/.github digest to 8197a2e #575
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@8197a2e83e39d11179f8678b180c5f444ec63c66 | |
verify-code: | |
uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@8197a2e83e39d11179f8678b180c5f444ec63c66 | |
verify-renovate-config: | |
uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@8197a2e83e39d11179f8678b180c5f444ec63c66 | |
verify-chart: | |
uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@8197a2e83e39d11179f8678b180c5f444ec63c66 | |
verify-container-build: | |
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@8197a2e83e39d11179f8678b180c5f444ec63c66 | |
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-22.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-22.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 |