This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes #570. (#572) * Fixes #571. (#573) * Add DevSkim scanning (#576) * Examples in fixed-point conversion functions. * API review April 2022 (#561) * API review April 2022 * Apply suggestions from code review Co-authored-by: Mariia Mykhailova <mamykhai@microsoft.com> * Update api-design-2022-04.md * Update api-design-2022-04.md Co-authored-by: Mariia Mykhailova <mamykhai@microsoft.com> * Fixes #580. (#581) * Address reviewer's feedback. Co-authored-by: Angela Burton <anjbur@users.noreply.github.com> Co-authored-by: Mariia Mykhailova <mamykhai@microsoft.com>
- Loading branch information
1 parent
a084a1f
commit c86b521
Showing
7 changed files
with
156 additions
and
50 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: DevSkim | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
schedule: | ||
# set schedule to run at 2AM PT on Saturdays | ||
- cron: '0 9 * * Sat' | ||
|
||
jobs: | ||
lint: | ||
name: DevSkim | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run DevSkim scanner | ||
uses: microsoft/DevSkim-Action@v1 | ||
|
||
- name: Upload DevSkim scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: devskim-results.sarif |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Q# API Design Discussions / April 2022 | ||
|
||
Reviewers (in order by username): tcNickolas, msoeken | ||
|
||
## Agenda | ||
|
||
- https://github.com/microsoft/QuantumLibraries/issues/423 | ||
- https://github.com/microsoft/QuantumLibraries/issues/549 | ||
- https://github.com/microsoft/QuantumLibraries/issues/555 | ||
- https://github.com/microsoft/QuantumLibraries/issues/559 | ||
|
||
## Discussion | ||
|
||
### Simple and consistent arithmetic API | ||
|
||
**Proposal**: https://github.com/microsoft/QuantumLibraries/issues/423 | ||
|
||
**Reviews**: | ||
|
||
> Please add a bullet point including your alias, your review result (*approve*, *reject*, *comment*), and a comment (optional when result is *approve*). Alternatively, add a line to the PR discussion incl. a reference to this issue. | ||
**Consensus**: Postponed (no additional review was provided) | ||
|
||
--- | ||
|
||
### Add names to tuple fields of FixedPoint UDT | ||
|
||
**Proposal**: https://github.com/microsoft/QuantumLibraries/issues/549 | ||
|
||
**Reviews**: | ||
* @tcNickolas, *approve* | ||
> Please add a bullet point including your alias, your review result (*approve*, *reject*, *comment*), and a comment (optional when result is *approve*). Alternatively, add a line to the PR discussion incl. a reference to this issue. | ||
**Consensus**: Approved (incl. implicit approval from proposal author) | ||
|
||
--- | ||
|
||
### Add SubtractFxP and InvertFxP to the Numerics package | ||
|
||
**Proposal**: https://github.com/microsoft/QuantumLibraries/issues/555 | ||
|
||
**Reviews**: | ||
* @tcNickoas, *approve* - I had a comment about the order of arguments for `SubtractFxP`, but I see you've already incorporated it in the proposal | ||
> Please add a bullet point including your alias, your review result (*approve*, *reject*, *comment*), and a comment (optional when result is *approve*). Alternatively, add a line to the PR discussion incl. a reference to this issue. | ||
**Consensus**: Approved (incl. implicit approval from proposal author) | ||
|
||
--- | ||
|
||
### FixedPoint conversion functions | ||
|
||
**Proposal**: https://github.com/microsoft/QuantumLibraries/issues/559 | ||
|
||
**Reviews**: | ||
* @tcNickolas, *approve*, left a comment | ||
> Please add a bullet point including your alias, your review result (*approve*, *reject*, *comment*), and a comment (optional when result is *approve*). Alternatively, add a line to the PR discussion incl. a reference to this issue. | ||
**Consensus**: Approved (incl. implicit approval from proposal author) | ||
|
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 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 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 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 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