File tree 2 files changed +25
-10
lines changed
2 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 1
- name : Django CI
1
+ name : ' Django CI'
2
2
3
3
on :
4
4
push :
7
7
branches : [ "master", "develop" ]
8
8
workflow_dispatch :
9
9
10
- permissions :
11
- statuses : write
12
- checks : write
13
-
14
10
jobs :
15
11
build :
16
12
name : Build & test
37
33
run : |
38
34
uv run python manage.py test
39
35
- name : Report test results
40
- uses : dorny/test-reporter@v1
41
- if : always ()
36
+ uses : actions/upload-artifact@v4
37
+ if : success() || failure ()
42
38
with :
43
- name : Django Tests
44
- path : tests_result.xml
45
- reporter : java-junit
39
+ name : test-results
40
+ path : tests_result.xml
Original file line number Diff line number Diff line change
1
+ name : ' Test Report'
2
+ on :
3
+ workflow_run :
4
+ workflows : ['Django CI']
5
+ types :
6
+ - completed
7
+ permissions :
8
+ contents : read
9
+ actions : read
10
+ checks : write
11
+ jobs :
12
+ report :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : dorny/test-reporter@v1
16
+ with :
17
+ artifact : test-results
18
+ name : Django Tests
19
+ path : ' *.xml'
20
+ reporter : java-junit
You can’t perform that action at this time.
0 commit comments