Skip to content

fix: Remove 4.4 DDB and KMS patches, abstract test to work on later Dafny versions #1737

fix: Remove 4.4 DDB and KMS patches, abstract test to work on later Dafny versions

fix: Remove 4.4 DDB and KMS patches, abstract test to work on later Dafny versions #1737

Workflow file for this run

# This workflow runs for every pull request
name: PR CI
on:
pull_request:
jobs:
getVersion:
uses: ./.github/workflows/dafny_version.yaml
getVerifyVersion:
uses: ./.github/workflows/dafny_verify_version.yaml
pr-ci-format:
needs: getVersion
uses: ./.github/workflows/library_format.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
pr-ci-codegen:
needs: getVersion
uses: ./.github/workflows/library_codegen.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
pr-ci-verification:
needs: getVerifyVersion
uses: ./.github/workflows/library_dafny_verification.yml
with:
dafny: ${{needs.getVerifyVersion.outputs.version}}
pr-ci-java:
needs: getVersion
uses: ./.github/workflows/library_java_tests.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
pr-ci-net:
needs: getVersion
uses: ./.github/workflows/library_net_tests.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
pr-interop-test:
needs: getVersion
uses: ./.github/workflows/library_interop_tests.yml
with:
dafny: ${{needs.getVersion.outputs.version}}