-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.13 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Run Tests
on: push
jobs:
# Run tests
test:
runs-on: ubuntu-latest
services:
mariadb:
image: mariadb:10
env:
MARIADB_USER: user
MARIADB_PASSWORD: password
MARIADB_DATABASE: test_database
MARIADB_ROOT_PASSWORD: password
ports: ["3306:3306"]
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=5
steps:
- uses: actions/checkout@v3
- name: Wait for MariaDB
run: |
for i in {1..10}
do
if [[ $(mysqladmin ping -h"127.0.0.1" -P"3306" --silent) -eq 0 ]]; then
exit 0
else
sleep 3
fi
done
exit 1
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.3'
bundler-cache: true
- name: Run tests
run: bundle exec rake test
env:
DATABASE_HOST: 127.0.0.1
DATABASE_DATABASE: test_database
DATABASE_PORT: 3306
DATABASE_USER: user
DATABASE_PASSWORD: password