Skip to content

feat: initial version #1

feat: initial version

feat: initial version #1

Workflow file for this run

name: Simple Test
on:
workflow_dispatch: # Allow manual triggering
push:
branches: [main, init]
jobs:
test-action:
name: Test Twyn Action
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Twyn Security Check
id: twyn
uses: ./
with:
publish: true
version: "v6"
- name: Display Results
run: |
echo "Exit Code: ${{ steps.twyn.outputs.exit-code }}"
echo "Has Findings: ${{ steps.twyn.outputs.has-findings }}"
echo "Results:"
echo "${{ steps.twyn.outputs.results }}"