Elobarote with github actions #4
This file contains 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 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 | |
- name: Build | |
run: make docker-build | |
# Run all tests that are not integration tests | |
- name: Test | |
run: make test | |
# Run all integrationtests | |
- name: Integrationtest | |
run: make integrationtest |