File tree Expand file tree Collapse file tree
actions/polymorph_codegen
StandardLibrary/runtimes/go
ImplementationFromDafny-go Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8888 run : |
8989 make polymorph_python
9090
91- - name : Regenerate Go code using smithy-dafny
92- working-directory : ./${{ inputs.library }}
93- shell : bash
94- run : |
95- make polymorph_go
96-
9791 - name : Check regenerated code against commited code
9892 # Composite action inputs seem to not actually support booleans properly for some reason
9993 if : inputs.diff-generated-code == 'true'
Original file line number Diff line number Diff line change @@ -19,20 +19,17 @@ jobs:
1919 strategy :
2020 fail-fast : false
2121 matrix :
22- library :
23- [
24- StandardLibrary,
25- ]
22+ library : [StandardLibrary]
2623 go-version : ["1.23"]
2724 os : [
28- # TODO fix Dafny-generated tests on Windows;
29- # the sys.path workaround for generated Dafny doesn't work on Windows.
30- # Note: only tests use the sys.path workaround, not source code.
31- # Windows source code is tested downstream (ex. ESDK-Python CI).
32- # windows-latest,
33- ubuntu-latest,
34- macos-13,
35- ]
25+ # TODO fix Dafny-generated tests on Windows;
26+ # the sys.path workaround for generated Dafny doesn't work on Windows.
27+ # Note: only tests use the sys.path workaround, not source code.
28+ # Windows source code is tested downstream (ex. ESDK-Python CI).
29+ # windows-latest,
30+ ubuntu-latest,
31+ macos-13,
32+ ]
3633 runs-on : ${{ matrix.os }}
3734 defaults :
3835 run :
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ module github.com/dafny-lang/DafnyStandardLibGo
22
33go 1.23.0
44
5- require github.com/dafny-lang/DafnyRuntimeGo/v4 v4.8.0
5+ require github.com/dafny-lang/DafnyRuntimeGo/v4 v4.9.1
66
77require github.com/google/uuid v1.6.0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.23.0
55replace github.com/dafny-lang/DafnyStandardLibGo v0.0.0 => ../ImplementationFromDafny-go
66
77require (
8- github.com/dafny-lang/DafnyRuntimeGo/v4 v4.8.0
8+ github.com/dafny-lang/DafnyRuntimeGo/v4 v4.9.1
99 github.com/dafny-lang/DafnyStandardLibGo v0.0.0
1010)
1111
You can’t perform that action at this time.
0 commit comments