Skip to content

Add --env option in websh command #207

Add --env option in websh command

Add --env option in websh command #207

name: Build and Test
on: [push, pull_request]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', '1.20', '1.21.x' ]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out code
uses: actions/checkout@v4
- name: Build
run: go build -v .
- name: Run Tests
run: go test -v ./...