Skip to content

SpectralOps/setup-teller-action

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

Repository files navigation

✈️ setup-teller-action

Set up your GitHub Actions workflow with a specific version of Teller.

💡 Usage

Use the following to set up a teller binary that's available in your workflow steps:

      - name: Setup Teller
        uses: spectralops/setup-teller@v2

📋 Workflow

name: run with teller
on:
  push:
    branches:
      - master
      - main
  pull_request:

jobs:
  build:
    name: Build your code
    runs-on: ubuntu-latest

    steps:
      - name: Clone repo
        uses: actions/checkout@master


      # set up teller
      - name: Setup Teller
        uses: spectralops/setup-teller@v2

      - name: Run a Teller task (show, scan, run, etc.)
        run: teller run [args]