1# This is a basic workflow that is manually triggered
2
3name: GUIX 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
7on:
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
15jobs:
16  # This workflow contains a single job called "linux_job"
17  guix:
18    permissions:
19      contents: read
20      issues: read
21      checks: write
22      pull-requests: write
23      pages: write
24      id-token: write
25
26    uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master
27    with:
28      cmake_path: ./test/guix_test/cmake
29      result_affix: GUIX
30
31