Skip to content

Commit 75b64f1

Browse files
committed
format and fixes
1 parent ef41e45 commit 75b64f1

File tree

9 files changed

+14
-15
lines changed

9 files changed

+14
-15
lines changed

.github/workflows/ci_codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup Dafny
4141
uses: dafny-lang/[email protected]
4242
with:
43-
dafny-version: ${{ inputs.dafny }}
43+
dafny-version: ${{ inputs.dafny }}
4444

4545
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
4646
uses: actions/setup-dotnet@v4

.github/workflows/ci_examples_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: dafny-lang/[email protected]
4545
with:
4646
dafny-version: ${{ inputs.dafny }}
47-
47+
4848
- name: Regenerate code using smithy-dafny if necessary
4949
uses: ./.github/actions/polymorph_codegen
5050
with:

.github/workflows/ci_test_vector_java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: dafny-lang/[email protected]
5151
with:
5252
dafny-version: ${{ inputs.dafny }}
53-
53+
5454
- name: Regenerate code using smithy-dafny if necessary
5555
if: ${{ inputs.regenerate-code }}
5656
uses: ./.github/actions/polymorph_codegen
@@ -68,13 +68,13 @@ jobs:
6868

6969
- name: Build TestVectors implementation
7070
shell: bash
71-
working-directory: ${{matrix.library}}
71+
working-directory: ${{matrix.library}}
7272
run: |
7373
# This works because `node` is installed by default on GHA runners
7474
CORES=$(node -e 'console.log(os.cpus().length)')
7575
make build_java CORES=$CORES
7676
7777
- name: Test TestVectors
78-
working-directory: ${{matrix.library}}
78+
working-directory: ${{matrix.library}}
7979
run: |
8080
make test_java

.github/workflows/ci_test_vector_net.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: dafny-lang/[email protected]
5151
with:
5252
dafny-version: ${{ inputs.dafny }}
53-
53+
5454
- name: Regenerate code using smithy-dafny if necessary
5555
if: ${{ inputs.regenerate-code }}
5656
uses: ./.github/actions/polymorph_codegen

.github/workflows/dafny_version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
id: read_property
2222
uses: christian-draeger/[email protected]
2323
with:
24-
path: "./project.properties"
25-
properties: "dafnyVersion"
24+
path: "./project.properties"
25+
properties: "dafnyVersion"

.github/workflows/daily_ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ jobs:
4343
uses: ./.github/workflows/library_net_tests.yml
4444
with:
4545
dafny: ${{needs.getVersion.outputs.version}}
46-

.github/workflows/library_dafny_verification.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/setup-dotnet@v3
4848
with:
4949
dotnet-version: "6.0.x"
50-
50+
5151
- name: Regenerate code using smithy-dafny if necessary
5252
if: ${{ inputs.regenerate-code }}
5353
uses: ./.github/actions/polymorph_codegen
@@ -57,14 +57,14 @@ jobs:
5757
diff-generated-code: false
5858

5959
- name: Verify ${{ matrix.library }} Dafny code
60-
working-directory: ./${{ matrix.library }}
60+
working-directory: ${{ matrix.library }}
6161
run: |
6262
# This works because `node` is installed by default on GHA runners
6363
CORES=$(node -e 'console.log(os.cpus().length)')
6464
make verify CORES=$CORES
6565
6666
- name: Check solver resource use
6767
if: success() || failure()
68-
working-directory: ./${{ matrix.library }}
68+
working-directory: ${{ matrix.library }}
6969
run: |
70-
make dafny-reportgenerator
70+
make dafny-reportgenerator

.github/workflows/manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
uses: ./.github/workflows/ci_examples_net.yml
5757
with:
5858
dafny: ${{ inputs.dafny }}
59-
regenerate-code: ${{ inputs.regenerate-code }}
59+
regenerate-code: ${{ inputs.regenerate-code }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ jobs:
8787
--repo "dafny-lang/dafny" \
8888
--title "[PRERELEASE REGRESSION] Dafny prerelease regression from ${{ github.repository }}" \
8989
--body "Failure in ${{ github.workflow_ref }}. \
90-
See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
90+
See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"

0 commit comments

Comments
 (0)