Skip to content

chore: error handling and graceful shutdown #142

chore: error handling and graceful shutdown

chore: error handling and graceful shutdown #142

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
bq2bq:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: test executor
run: |
cd ./bq2bq
chmod +x ./run_coverage.sh
./run_coverage.sh
max2max:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
# Build the Go binary
- name: Build
run: |
cd max2max
go get .
go test ./...