Bump github.com/chrj/smtpd from 0.0.0-20140720195347-c6fe39d4dcdd to 0.3.1 #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |