Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/romnn/setup-brane-action

GitHub action to setup brane.
https://github.com/romnn/setup-brane-action

actions brane cicd github pipeline

Last synced: 16 days ago
JSON representation

GitHub action to setup brane.

Awesome Lists containing this project

README

        

## setup brane action

GitHub action to setup [brane](https://github.com/onnovalkering/brane).

#### Usage

**Note**: Make sure the runner or container image you use the action with has at least `docker`, `git` and `make` installed.

```yaml
# .github/workflows/ci.yml
name: CI
on: ['push']

jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2

- name: 'setup brane'
uses: 'romnn/setup-brane-action@master'
id: brane_setup
# optionally:
with:
start_instance: true
start_ide: true

- name: 'use the brane CLI'
run: |
brane --help
# check that the brane services are running
docker ps

- name: 'query the jupyterlab IDE access token'
run: |
echo "${{ steps.brane_setup.outputs.jupyterlab_token }}"
```