Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Bump github.com/DATA-DOG/go-sqlmock from 0.0.0-20180221072120-a6b4b164c6d1 to 1.5.2 #16

Bump github.com/DATA-DOG/go-sqlmock from 0.0.0-20180221072120-a6b4b164c6d1 to 1.5.2

Bump github.com/DATA-DOG/go-sqlmock from 0.0.0-20180221072120-a6b4b164c6d1 to 1.5.2 #16

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Set up MySQL
run: |
sudo systemctl start mysql.service
mysql -uroot -proot -e "CREATE DATABASE notifications_test;"
- name: Test
run: |
export DATABASE_URL="root:root@localhost:3306/notifications_test"
go install github.com/onsi/ginkgo/v2/ginkgo@v2
ginkgo version
bin/test