Skip to content

inject pg and redis dependency to urlHandler #5

inject pg and redis dependency to urlHandler

inject pg and redis dependency to urlHandler #5

Workflow file for this run

name: branch
on:
push:
branches:
- "**"
- "!main"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19.x', '1.20.x' ]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...