-
Notifications
You must be signed in to change notification settings - Fork 23
chore: configure with project.properties #750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3b02e0e
chore: configure with project.properties
ajewellamz 0d63b06
m
ajewellamz 81fdd37
add format checking
ajewellamz 2d85bd4
m
ajewellamz 0b63df6
m
ajewellamz 6bc4ccc
m
ajewellamz 88ecbea
m
ajewellamz 44e332d
m
ajewellamz 13c3db1
m
ajewellamz 452dc12
m
ajewellamz 991c81f
m
ajewellamz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,7 @@ | ||
| *Issue #, if available:* | ||
| _Issue #, if available:_ | ||
|
|
||
| *Description of changes:* | ||
|
|
||
| *Squash/merge commit message, if applicable:* | ||
| _Description of changes:_ | ||
|
|
||
| _Squash/merge commit message, if applicable:_ | ||
|
|
||
| By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. |
This file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # This workflow reads the project.properties | ||
| # into the environment variables | ||
| # and then creates an output variable for `dafnyFormatVersion ` | ||
| name: Dafny Format Version | ||
|
|
||
| on: | ||
| workflow_call: | ||
| outputs: | ||
| version: | ||
| description: "The dafny version for format" | ||
| value: ${{ jobs.getDafnyFormatVersion.outputs.version }} | ||
|
|
||
| jobs: | ||
| getDafnyFormatVersion: | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| version: ${{ steps.read_property.outputs.dafnyFormatVersion }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Read version from Properties-file | ||
| id: read_property | ||
| uses: christian-draeger/read-properties@1.1.1 | ||
| with: | ||
| path: "./project.properties" | ||
| properties: "dafnyFormatVersion" |
This file contains hidden or 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 file contains hidden or 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 file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # This workflow reads the project.properties | ||
| # into the environment variables | ||
| # and then creates an output variable for `dafnyVerifyVersion ` | ||
| name: Dafny Verify Version | ||
|
|
||
| on: | ||
| workflow_call: | ||
| outputs: | ||
| version: | ||
| description: "The dafny version for verify" | ||
| value: ${{ jobs.getDafnyVerifyVersion.outputs.version }} | ||
|
|
||
| jobs: | ||
| getDafnyVerifyVersion: | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| version: ${{ steps.read_property.outputs.dafnyVerifyVersion }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Read version from Properties-file | ||
| id: read_property | ||
| uses: christian-draeger/read-properties@1.1.1 | ||
| with: | ||
| path: "./project.properties" | ||
| properties: "dafnyVerifyVersion" |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # This workflow reads the project.properties | ||
| # into the environment variables | ||
| # and then creates an output variable for `dafnyVersion` | ||
| name: Dafny Version | ||
|
|
||
| on: | ||
| workflow_call: | ||
| outputs: | ||
| version: | ||
| description: "The dafny version" | ||
| value: ${{ jobs.getDafnyVersion.outputs.version }} | ||
|
|
||
| jobs: | ||
| getDafnyVersion: | ||
| runs-on: ubuntu-22.04 | ||
| outputs: | ||
| version: ${{ steps.read_property.outputs.dafnyVersion }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Read version from Properties-file | ||
| id: read_property | ||
| uses: christian-draeger/read-properties@1.1.1 | ||
| with: | ||
| path: "./project.properties" | ||
| properties: "dafnyVersion" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.