Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/spectralops/setup-teller-action

Easily set up Teller in your CI jobs
https://github.com/spectralops/setup-teller-action

Last synced: about 1 month ago
JSON representation

Easily set up Teller in your CI jobs

Awesome Lists containing this project

README

        

# :airplane: setup-teller-action

Set up your GitHub Actions workflow with a specific version of [Teller](https://github.com/spectralops/teller).

## :bulb: Usage

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

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

## :clipboard: Workflow

```yaml
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]
```