Skip to content

Rapha/dockerization e2etest cicd #1

Rapha/dockerization e2etest cicd

Rapha/dockerization e2etest cicd #1

Workflow file for this run

name: e2e tests
on:
- pull_request
jobs:
test:
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: go test ./...
working-directory: e2etest