Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 789 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 789 Bytes

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