Skip to content

feat:structure

feat:structure #11

Workflow file for this run

name: Run - Integration Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Run Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.5
- name: Run tests
run: go test ./... -v