|
@@ -51,6 +51,9 @@ jobs:
|
|
|
PR_NUM: ${{ github.event.number }}
|
|
PR_NUM: ${{ github.event.number }}
|
|
|
run: |
|
|
run: |
|
|
|
echo $PR_NUM > pr_num.txt
|
|
echo $PR_NUM > pr_num.txt
|
|
|
|
|
+ echo $GITHUB_BASE_REF > base.txt
|
|
|
|
|
+ echo $GITHUB_HEAD_REF > head.txt
|
|
|
|
|
+
|
|
|
- name: Upload code coverage
|
|
- name: Upload code coverage
|
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
|
with:
|
|
with:
|
|
@@ -58,7 +61,8 @@ jobs:
|
|
|
path: |
|
|
path: |
|
|
|
coverage.out
|
|
coverage.out
|
|
|
pr_num.txt
|
|
pr_num.txt
|
|
|
-
|
|
|
|
|
|
|
+ base.txt
|
|
|
|
|
+ head.txt
|
|
|
|
|
|
|
|
frontend:
|
|
frontend:
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|