Skip to content

Includes install script in readme #20

Includes install script in readme

Includes install script in readme #20

Workflow file for this run

name: "ci"
on: pull_request
jobs:
test-bootstrap-zsh:
name: zsh-integration
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build docker image with bootstrap script
run: docker build -t bootstrap-script-test-zsh -f ./bootstrap-test.Dockerfile . --build-arg SHELL_VAR=zsh
- name: Run bats-zsh test via devbox
run: docker run bootstrap-script-test-zsh bats test/bootstrap-agnostic.bats test/bootstrap-zsh.bats
test-bootstrap-bash:
name: bash-integration
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build docker image with bootstrap script
run: docker build -t bootstrap-script-test-bash -f ./bootstrap-test.Dockerfile . --build-arg SHELL_VAR=bash
- name: Run bats-bash test via devbox
run: docker run bootstrap-script-test-bash bats test/bootstrap-agnostic.bats test/bootstrap-bash.bats
test-bootstrap-fish:
name: fish-integration
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build docker image with bootstrap script
run: docker build -t bootstrap-script-test-fish -f ./bootstrap-test.Dockerfile . --build-arg SHELL_VAR=fish
- name: Run bats-fish test via devbox
run: docker run bootstrap-script-test-fish bats test/bootstrap-agnostic.bats test/bootstrap-fish.bats
check-linting-and-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jetpack-io/[email protected]
- run: devbox run lint