We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60c801 commit 7518544Copy full SHA for 7518544
.github/workflows/check_api_updates.py
@@ -0,0 +1,5 @@
1
+from git import Repo
2
+
3
+repo = Repo("kokkos-kernels")
4
+files = repo.git.diff('HEAD..develop', name_only=True).split()
5
+print(files)
.github/workflows/docs.yml
@@ -20,6 +20,9 @@ jobs:
20
with:
21
python-version: '3.13.2'
22
- run: pip install --require-hashes -r kokkos-kernels/.github/workflows/docs_check_requirements.txt
23
+ - name: check API changes
24
+ run: |
25
+ python kokkos-kenrels/.github/workflows/check_api_updates.py
26
27
build:
28
runs-on: [macos-latest]
0 commit comments