Skip to content

refactor: using aep-lib-go #10

refactor: using aep-lib-go

refactor: using aep-lib-go #10

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21" # Specify your Go version here
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...