fix(.NET): validate that MemoryStream instances are backed by an arra… #8
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
# This workflow runs for every push to main-1.x | |
name: Push CI | |
on: | |
push: | |
branches: | |
- main-1.x | |
jobs: | |
pr-populate-dafny-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Populate Dafny versions list | |
id: populate-dafny-versions-list | |
run: echo "dafny-versions-list=['4.1.0', '4.3.0']" >> $GITHUB_OUTPUT | |
outputs: | |
dafny-version-list: ${{ steps.populate-dafny-versions-list.outputs.dafny-versions-list }} | |
push-ci-verification: | |
needs: pr-populate-dafny-versions | |
strategy: | |
fail-fast: false | |
matrix: | |
dafny-version: ${{ fromJson(needs.pr-populate-dafny-versions.outputs.dafny-version-list) }} | |
uses: ./.github/workflows/test_models_dafny_verification.yml | |
with: | |
dafny: ${{ matrix.dafny-version }} | |
push-ci-java: | |
needs: pr-populate-dafny-versions | |
strategy: | |
fail-fast: false | |
matrix: | |
dafny-version: ${{ fromJson(needs.pr-populate-dafny-versions.outputs.dafny-version-list) }} | |
uses: ./.github/workflows/test_models_java_tests.yml | |
with: | |
dafny: ${{ matrix.dafny-version }} | |
push-ci-net: | |
needs: pr-populate-dafny-versions | |
strategy: | |
fail-fast: false | |
matrix: | |
dafny-version: ${{ fromJson(needs.pr-populate-dafny-versions.outputs.dafny-version-list) }} | |
uses: ./.github/workflows/test_models_net_tests.yml | |
with: | |
dafny: ${{ matrix.dafny-version }} |