Skip to content

Commit

Permalink
dsds
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinputhenveettil committed Sep 27, 2024
1 parent df85940 commit c3838a6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/golang_rc_candidate_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
#!/bin/bash
shopt -s expand_aliases
TRACER_PATH=$(pwd)
echo $TRACER_PATH
echo "Dealing with Golang RC version!"
rcToInstall=$(git ls-remote -t https://github.com/golang/go | awk -F/ '{ print $NF }' | sort -V |grep rc | tail -1 | tr -d ' ')
echo "RC version : $rcToInstall"
Expand All @@ -35,7 +38,15 @@ jobs:
gorc download
gorc version
echo "Starting Couchbase"
docker compose -f docker-compose-integration.yaml up -d
echo "Starting Postgres"
sudo systemctl start postgresql.service
sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'mysecretpassword'"
echo "After starting Postgres"
gorc test -v -coverpkg=./... -cover -covermode atomic ./...
Expand Down

0 comments on commit c3838a6

Please sign in to comment.