We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58a2456 commit 724ed0bCopy full SHA for 724ed0b
1 file changed
.github/workflows/doxygen.yml
@@ -0,0 +1,21 @@
1
+
2
+name: compute involvement degree
3
4
+on: [push]
5
6
+jobs:
7
+ work:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ with:
12
+ # github action 默认签出只包含最后一次提交
13
+ # 解决方案参考:https://stackoverflow.com/questions/62334460/git-history-in-a-github-action
14
+ ref: ${{ github.event.pull_request.head.sha }}
15
+ fetch-depth: 0
16
+ #任务名称:设置Python环境
17
+ - name: Set up Python
18
+ # This is the version of the action for setting up Python, not the Python version.
19
+ uses: mattnotmitt/doxygen-action@v1.9.5
20
21
+ additional-packages: font-fira-code
0 commit comments