Skip to content

feat(shell,open): add piping, multi-instance, and cross-platform supp… #937

feat(shell,open): add piping, multi-instance, and cross-platform supp…

feat(shell,open): add piping, multi-instance, and cross-platform supp… #937

Workflow file for this run

name: vet
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version: '1.24.0'
cache: true
- name: install
run: make install-tools
- name: vet
run: make vet
# - name: Report Status
# if: always()
# uses: ravsamhq/notify-slack-action@v1
# with:
# status: ${{ job.status }}
# notify_when: "failure"
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}