Skip to content

feat: add Nushell support for shell-init #190

feat: add Nushell support for shell-init

feat: add Nushell support for shell-init #190

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Test
run: go test ./...
env:
GIT_CEILING_DIRECTORIES: /
e2e:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Build
run: go build -o gw ./cmd/gw
- name: Run e2e tests
run: bash e2e/run.sh
env:
GW_BIN: ${{ github.workspace }}/gw