Skip to content

Commit 521fe0b

Browse files
committed
Add GitHub action to run regression test
1 parent 772f99b commit 521fe0b

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This is a basic workflow that is manually triggered
2+
3+
name: regression_test
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the master branch
7+
on:
8+
workflow_dispatch:
9+
push:
10+
branches: [ master ]
11+
pull_request:
12+
branches: [ master ]
13+
14+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
15+
jobs:
16+
# This workflow contains a single job called "linux_job"
17+
run_tests:
18+
permissions:
19+
contents: read
20+
issues: read
21+
checks: write
22+
pull-requests: write
23+
pages: write
24+
id-token: write
25+
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master

0 commit comments

Comments
 (0)