RESOURCE | GET | CREATE | LIST | UPDATE | DELETE |
---|---|---|---|---|---|
project | stable | stable | ❌ | ❌ | ❌ |
project settings | stable | ❌ | ❌ | stable | ❌ |
pipeline definition | stable | stable | stable | stable | stable |
trigger | stable | stable | stable | stable | stable |
context | stable | stable | stable | ❌ | stable |
context restriction | ❌ | stable | stable | ❌ | stable |
env var | ❌ | stable | stable | ❌ | stable |
This repository makes use Task. It may be installed (on MacOS) with:
$ brew install go-task/tap/go-task
See the full list of available tasks by running task -l
, or, see the Taskfile.yml script.
task lint
task fmt
task generate
# Run all the tests
task test
# Run the tests for one package
task test -- ./client/...
# Run all the quick tests
task test -- -short ./...