File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Automatic Report and Test Manifest Generation
2
+ on :
3
+ push :
4
+ branches : [main]
5
+ paths : ["reports/**", "tests/**"]
6
+ pull_request :
7
+ branches : [ main ]
8
+ paths : ["reports/**", "tests/**"]
9
+
10
+ jobs :
11
+ build :
12
+ name : Generate Reports using Ruby
13
+ runs-on : ubuntu-latest
14
+ permissions :
15
+ # Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
16
+ contents : write
17
+ steps :
18
+ - uses : actions/checkout@v3
19
+ - uses : ruby/setup-ruby@v1
20
+ with :
21
+ ruby-version : 3.2.2
22
+ - name : Install dependencies
23
+ run : bundle install
24
+ - name : Generate Test Manifests
25
+ run : (cd tests; bundle exec rake)
26
+ # - name: Generate Report
27
+ # run: (cd reports; rake)
28
+ - uses : stefanzweifel/git-auto-commit-action@v4
29
+ with :
30
+ commit_message : Automated report generation
31
+ commit_user_name : Report generation bot
32
+ commit_user_email : <>
33
+
Original file line number Diff line number Diff line change 201
201
PLATFORMS
202
202
arm64-darwin-21
203
203
arm64-darwin-22
204
+ arm64-darwin-23
204
205
x86_64-darwin-20
205
206
x86_64-linux
206
207
You can’t perform that action at this time.
0 commit comments