Skip to content

esbmc/ls-verifier-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LSVerifier-Action

This action uses LSVerifier to formally verify ANSI-C projects. This action will run LSVerifier in all available repositories on the runner.

Inputs

lsverifier_options (optional): give the options to be used with LSVerifier.

Usage

- name: LSVerifier
  uses: Goblin57/LSVerifier-Action@v1

Because this action uses a Docker container, your workflow must be executed on a runner with a Linux operating system.

Usage Example

name: test workflow

on: push

jobs:
  test-job:
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v4
      
      - name: run action
        uses: Goblin57/LSVerifier-Action@v1
        with:
          lsverifier_options: "-r -f"