Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.2 in /src/notifications #28

Bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.2 in /src/notifications

Bump github.com/onsi/ginkgo/v2 from 2.22.0 to 2.22.2 in /src/notifications #28

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: src/notifications/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: |
pushd src/notifications
export DATABASE_URL="root:root@localhost:3306/notifications_test"
go install github.com/onsi/ginkgo/v2/ginkgo@v2
ginkgo version
bin/test
popd