Skip to content

docs: update contributing to docs page #1489

docs: update contributing to docs page

docs: update contributing to docs page #1489

Workflow file for this run

name: End to end Tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build binary for integration tests
run: go build -a -o ./bearer ./cmd/bearer/main.go
- name: Run tests
run: go test -v ./e2e/... -p 8
timeout-minutes: 10
env:
USE_BINARY: true