Skip to content

feat: add Response option & new custom headers #138

feat: add Response option & new custom headers

feat: add Response option & new custom headers #138

Workflow file for this run

on:
push:
branches:
- master
paths:
- "**.go"
- "go.mod"
pull_request:
branches:
- "**"
name: tests
jobs:
tests:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: make ci
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- run: make cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: /tmp/teler-coverage.out
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
args: --timeout=5m
semgrep:
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- run: semgrep ci
env:
SEMGREP_RULES: auto