Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/spectralops/setup-teller-action
- Owner: SpectralOps
- License: mit
- Created: 2021-05-27T12:13:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T08:53:52.000Z (6 months ago)
- Last Synced: 2024-11-20T13:43:42.899Z (about 1 month ago)
- Language: JavaScript
- Size: 436 KB
- Stars: 3
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-lateststeps:
- 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]
```