Merge pull request #138 from Olexandr88/patch-2 #201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:15 | |
env: | |
POSTGRES_PASSWORD: secret | |
POSTGRES_USER: root | |
POSTGRES_DB: defi | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5433:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.23 | |
id: go | |
- name: "Create env file" | |
run: | | |
touch .env | |
echo "${{ secrets.ENV_FILE }}" > .env | |
cat .env | |
- name: Install golang-migrate | |
run: | | |
curl -L https://github.com/golang-migrate/migrate/releases/download/v4.15.2/migrate.linux-amd64.tar.gz | tar xvz | |
sudo mv migrate /usr/bin/migrate | |
which migrate | |
# - name: Make Migrations | |
# run: make migrateup | |
# - name: Test | |
# run: make test |