Skip to content
spectralops

GitHub Action

Setup Teller

v2 Latest version

Setup Teller

spectralops

Setup Teller

Setup Teller by installing, downloading, and adding it to the path

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Teller

uses: SpectralOps/setup-teller-action@v2

Learn more about this action in SpectralOps/setup-teller-action

Choose a version

✈️ 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]