Skip to content

Merge pull request #73 from cloudfoundry/dependabot/go_modules/github… #57

Merge pull request #73 from cloudfoundry/dependabot/go_modules/github…

Merge pull request #73 from cloudfoundry/dependabot/go_modules/github… #57

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