Skip to content

Commit ec5b7d0

Browse files
committed
chore: add windows to the tests
Signed-off-by: Valery Piashchynski <[email protected]>
1 parent 418253e commit ec5b7d0

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

.github/pull_request_template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Reason for This PR
2+
3+
`[Author TODO: add issue # or explain reasoning.]`
4+
5+
## Description of Changes
6+
7+
`[Author TODO: add description of changes.]`
8+
9+
## License Acceptance
10+
11+
By submitting this pull request, I confirm that my contribution is made under
12+
the terms of the MIT license.
13+
14+
## PR Checklist
15+
16+
`[Author TODO: Meet these criteria.]`
17+
`[Reviewer TODO: Verify that these criteria are met. Request changes if not]`
18+
19+
- [ ] All commits in this PR are signed (`git commit -s`).
20+
- [ ] The reason for this PR is clearly provided (issue no. or explanation).
21+
- [ ] The description of changes is clear and encompassing.
22+
- [ ] Any required documentation changes (code and docs) are included in this PR.
23+
- [ ] Any user-facing changes are mentioned in `CHANGELOG.md`.
24+
- [ ] All added/changed functionality is tested.

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
go: [stable]
14-
os: ["ubuntu-latest", "macos-latest"]
14+
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
1515
steps:
1616
- name: Set up Go ${{ matrix.go }}
1717
uses: actions/setup-go@v6 # action page: <https://github.com/actions/setup-go>

binary_heap.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
binary heap (min-heap) algorithm used as a core for the priority queue
3-
*/
4-
51
package priorityqueue
62

73
import (

0 commit comments

Comments
 (0)