We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a67762 commit bee799eCopy full SHA for bee799e
2 files changed
.github/workflows/ci.yml
@@ -38,3 +38,11 @@ jobs:
38
run: |
39
pytest
40
41
+ - name: Commit and push the generated .dylib file
42
+ run: |
43
+ git config --local user.name "GitHub Action"
44
+ git config --local user.email "action@github.com"
45
+ git add ./loop_to_python_api/libLoopAlgorithmToPython.dylib
46
+ git commit -m "Add generated libLoopAlgorithmToPython.dylib"
47
+ git push origin HEAD:${{ github.ref }}
48
+
.gitignore
@@ -7,3 +7,9 @@ DerivedData/
7
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8
.netrc
9
.idea
10
+build/
11
+dist/
12
+loop_to_python_api.egg-info/
13
+loop_to_python_api/__pycache__/
14
+python_tests/__pycache__/
15
0 commit comments