Skip to content

merge main into r1.0 (#8) #1

merge main into r1.0 (#8)

merge main into r1.0 (#8) #1

Workflow file for this run

name: hystrix Pull Request Check
on:
pull_request:
paths:
- 'hystrix/**'
push:
paths:
- 'hystrix/**'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: cd hystrix && go build -v ./...
- name: Test
run: cd hystrix && go test -v -gcflags=all=-l ./...