More testing

This commit is contained in:
Josh Stewart 2022-09-07 14:35:54 +10:00
parent e39c852390
commit 5e393789b0
1 changed files with 7 additions and 4 deletions

View File

@ -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 }}