Skip to content

chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3 #49

chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3

chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3 #49

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: root
POSTGRES_DB: simple_bank_test
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@v3
with:
go-version: ^1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: make app_test