Auditware
radar-action
Shell

GitHub Action for radar - a static analysis tool for rust, anchor, stylus, and solidity smart contracts.

Last updated Jun 2, 2026
11
Stars
3
Forks
0
Issues
0
Stars/day
Attention Score
38
Language breakdown
Shell 100.0%
Files click to expand
README

radar GitHub Action

The GitHub action to add radar into your workflow.

For more information check the main repository: https://github.com/auditware/radar

Usage

.github/workflows/radar.yml

name: radar Static Analysis
on: [push]
jobs:
  analyze:
    runs-on: ubuntu-latest
    permissions:
      security-events: write
      actions: read
      contents: read
      
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        with:
          submodules: 'recursive'
      
      - name: Run radar
        id: radar
        uses: auditware/radar-action@main
        with:
          path: "."
          ignore: "low"
  
      - name: Upload SARIF file
        uses: github/codeql-action/upload-sarif@v3
        with:
          sarif_file: output.sarif

Inputs

| Input | Description | Required | Default | |-----------------------|---------------------------------------------|----------|---------| | path | Path of the folder to be scanned. | true | . | | ignore | Severities to be ignored (e.g. low,medium) | false | |

Use at your own risk. for support reach out to the Auditware team at Discord.

© 2026 GitRepoTrend · Auditware/radar-action · Updated daily from GitHub