Skip to content

Merge pull request #9 from PfMartin/09_user-authentication #37

Merge pull request #9 from PfMartin/09_user-authentication

Merge pull request #9 from PfMartin/09_user-authentication #37

Workflow file for this run

name: test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: secret
POSTGRES_DB: secure_bank
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install golang-migrate
run: |
curl -L https://github.com/golang-migrate/migrate/releases/download/v4.16.2/migrate.linux-amd64.tar.gz | tar xvz
sudo mv migrate /usr/bin
which migrate
- name: Run migrations
run: make migrate-up
- name: Test
run: make test