Skip to content

Rapha/dockerization e2etest #6

Rapha/dockerization e2etest

Rapha/dockerization e2etest #6

Workflow file for this run

name: e2e tests
on:
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Check out repository code
uses: actions/checkout@v4
# Setup Golang
- name: 🐿 Setup Golang
uses: actions/setup-go@v4
with:
go-version-file: 'e2etest/go.mod'
# Run e2e tests
- name: Run e2e tests
run: GOMAXPROCS=10 go test -v -timeout 30m ./...
working-directory: e2etest