Skip to content

Make the main more formal #44

Make the main more formal

Make the main more formal #44

Workflow file for this run

name: go-test
on:
push:
branches:
- master
- develop
- "dependabot/*"
pull_request:
types: [opened, synchronize, reopened]
jobs:
Builds:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
- name: Build
run: go build -v
- name: Test
run: go test -v ./...
- name: E2E test
uses: hoverkraft-tech/compose-action@v2.2.0
with:
compose-file: "./e2e/docker-compose.yaml"
up-flags: --abort-on-container-exit