Set up your GitHub Actions workflow with a specific version of Teller.
Use the following to set up a teller
binary that's available in your workflow steps:
- name: Setup Teller
uses: spectralops/setup-teller@v2
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]