From 5e393789b0a5ff9c2696e8ee45c5409094787ac4 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Wed, 7 Sep 2022 14:35:54 +1000 Subject: [PATCH] More testing --- .github/workflows/misra.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/misra.yml b/.github/workflows/misra.yml index 9793ea5f..21d1d7bf 100644 --- a/.github/workflows/misra.yml +++ b/.github/workflows/misra.yml @@ -15,9 +15,6 @@ jobs: # The type of runner that the job will run on runs-on: ubuntu-22.04 - env: - VIOLATIONS: 0 - # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -45,4 +42,10 @@ jobs: gistID: d8a449a3f6d3307dab457431512502f9 filename: misra_results.json label: MISRA Violations - message: $VIOLATIONS + message: ${{ env.VIOLATIONS }} + + - name: Env Test + run: | + echo Test1: ${{ env.VIOLATIONS }} + echo Test2: ${{ VIOLATIONS }} + echo Test3: ${{ env }}