Some checks failed
ktm-booking-bot/ktm-booking-bot/pipeline/head Something is wrong with the build of this commit
16 lines
153 B
Bash
Executable File
16 lines
153 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source .env
|
|
set -a
|
|
source .env
|
|
|
|
# go to backend directory
|
|
cd backend
|
|
|
|
# build binary
|
|
go test -cover ./...
|
|
|
|
# go to base directory
|
|
cd ..
|
|
|