Update nuget #718
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@2d8b59040ad9426f8b97e05ca9c2a259d2e5f66a | |
verify-code: | |
uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@2d8b59040ad9426f8b97e05ca9c2a259d2e5f66a | |
verify-renovate-config: | |
uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@2d8b59040ad9426f8b97e05ca9c2a259d2e5f66a | |
verify-chart: | |
uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@2d8b59040ad9426f8b97e05ca9c2a259d2e5f66a | |
verify-container-build: | |
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@2d8b59040ad9426f8b97e05ca9c2a259d2e5f66a | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup .NET Core SDK from global.json | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup .NET Core SDK from global.json | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 | |
- name: Verify performance | |
run: make verify-performance |