Skip to content

feat: add http2curl_resty (#6) #26

feat: add http2curl_resty (#6)

feat: add http2curl_resty (#6) #26

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
lint-and-ut:
strategy:
matrix:
version: [ 1.18, 1.19 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Golangci Lint
# https://golangci-lint.run/
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Unit Test
run: go test -race -covermode=atomic -coverprofile=coverage.txt ./...