Skip to content

Commit 7706606

Browse files
authored
Merge pull request #3 from r-sugawara/r-sugawara-patch-3
Create scan.yml
2 parents 71a8c1a + 6f7e9fa commit 7706606

File tree

2 files changed

+30
-6
lines changed

2 files changed

+30
-6
lines changed

.github/workflows/scan.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
# Trigger analysis when pushing in master or pull requests, and when creating
3+
# a pull request.
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
types: [opened, synchronize, reopened]
9+
name: Main Workflow
10+
jobs:
11+
sonarcloud:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
# Disabling shallow clone is recommended for improving relevancy of reporting
17+
fetch-depth: 0
18+
- name: SonarCloud Scan
19+
uses: sonarsource/sonarcloud-github-action@master # Ex: v2.1.0, See the latest version at https://github.com/marketplace/actions/sonarcloud-scan
20+
env:
21+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

DIRECTORY.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@
243243
* [Min Heap](data_structures/heap/min_heap.py)
244244
* [Randomized Heap](data_structures/heap/randomized_heap.py)
245245
* [Skew Heap](data_structures/heap/skew_heap.py)
246+
* Kd Tree
247+
* [Build Kdtree](data_structures/kd_tree/build_kdtree.py)
248+
* Example
249+
* [Example Usage](data_structures/kd_tree/example/example_usage.py)
250+
* [Hypercube Points](data_structures/kd_tree/example/hypercube_points.py)
251+
* [Kd Node](data_structures/kd_tree/kd_node.py)
252+
* [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py)
253+
* Tests
254+
* [Test Kdtree](data_structures/kd_tree/tests/test_kdtree.py)
246255
* Linked List
247256
* [Circular Linked List](data_structures/linked_list/circular_linked_list.py)
248257
* [Deque Doubly](data_structures/linked_list/deque_doubly.py)
@@ -285,12 +294,6 @@
285294
* Trie
286295
* [Radix Tree](data_structures/trie/radix_tree.py)
287296
* [Trie](data_structures/trie/trie.py)
288-
* KD Tree
289-
* [KD Tree Node](data_structures/kd_tree/kd_node.py)
290-
* [Build KD Tree](data_structures/kd_tree/build_kdtree.py)
291-
* [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py)
292-
* [Hypercibe Points](data_structures/kd_tree/example/hypercube_points.py)
293-
* [Example Usage](data_structures/kd_tree/example/example_usage.py)
294297

295298
## Digital Image Processing
296299
* [Change Brightness](digital_image_processing/change_brightness.py)

0 commit comments

Comments
 (0)