Skip to content

Rename github action name #1

Rename github action name

Rename github action name #1

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
# Since we are running postgres using testcontainers we do not need to run a separate service
# services:
# postgres:
# image: postgres:14-alpine
# env:
# POSTGRES_USER: root
# POSTGRES_PASSWORD: secret
# POSTGRES_DB: simple_bank
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- 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
# Migrations are run as part of testcontainers setup
#- name: Install golang-migrate
# run: |
# curl -L https://github.com/golang-migrate/migrate/releases/download/v4.14.1/migrate.linux-amd64.tar.gz | tar xvz
# sudo mv migrate.linux-amd64 /usr/bin/migrate
# which migrate
#
#- name: Run migrations
# run: make migrateup
# Run all tests that are not integration tests
- name: Test
run: make test