Skip to content

Commit 724ed0b

Browse files
committed
添加自动部署配置文件
1 parent 58a2456 commit 724ed0b

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/doxygen.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
21+
additional-packages: font-fira-code

0 commit comments

Comments
 (0)