Skip to content

Present the analysis outputs #5

Present the analysis outputs

Present the analysis outputs #5

name: Build and Test Project
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
types: [ opened, reopened, edited ]
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Copy AGREE Analysis Action
uses: actions/checkout@v3
with:
repository: loonwerks/AGREE-CI-Action
path: AGREE-CI-Action
- name: AGREE Analysis
id : agree
uses: ./AGREE-CI-Action
with:
project-name: AGREE-Toy-Example
component-to-analyze: Integer_Toy::top_level.Impl
analysis-strategy: single
- name: Get analysis timestamp
run: echo "Analysis timestamp is ${{ steps.agree.outputs.timestamp }}"
- name: Get analysis status
run: echo "Analysis status is ${{ steps.agree.outputs.status }}"
- name: Get analysis status-messages
run: echo "Analysis status messages are ${{ steps.agree.outputs.status-messages }}"