forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 13
76 lines (58 loc) · 2.19 KB
/
mysql.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Tests - MySQL
on: [push, pull_request]
jobs:
mysql:
runs-on: ubuntu-20.04
# Define environment variables for MySQL and Rails
env:
DB_ADAPTER: mysql2
MYSQL_PWD: root
RAILS_ENV: test
steps:
# Checkout the repo
- uses: actions/checkout@v3
# Install Ruby and run bundler
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
# Install Node
- uses: actions/setup-node@v3
with:
node-version: '16.6.0'
cache: 'yarn'
node-version: 16
# Copy all of the example configs over
- name: 'Setup the application'
run: |
cp .env.mysql2 .env
# Stub out the Rails credentials file so that we can start the Rails app
- name: 'Setup Credentials'
run: EDITOR='echo "$(cat config/credentials.yml.mysql2)" >' bundle exec rails credentials:edit
# Set the path to the wkhtmltopdf executable
- name: 'Determine wkhtmltopdf location'
run: echo "DMPROADMAP_WKHTMLTOPDF_PATH=`bundle exec which wkhtmltopdf`" >> $GITHUB_ENV
# Run yarn install for JS dependencies
- name: 'Yarn Install'
run: yarn install
# Start the DB server and initialize the DB
- name: 'Start MySQL'
run: sudo systemctl start mysql
- name: 'Build out the test database'
run: |
bundle exec rails db:create RAILS_ENV=test
bundle exec rails db:schema:load RAILS_ENV=test
- name: 'Run any pending database migrations'
run: bin/rails db:migrate RAILS_ENV=test
# Prebuild the CSS, JS and image assets
- name: 'Precompile all of the Assets'
run: bundle exec rails assets:precompile
# Run the unit and functional tests
- name: 'Run Rspec Tests for Helpers, Mixins, Policies and Presenters'
run: bin/bundle exec rspec spec/policies spec/presenters spec/helpers spec/mixins
- name: 'Run Rspec Tests for Models and Services'
run: bin/bundle exec rspec spec/models spec/services
- name: 'Run Rspec Tests for Controllers, Requests, Views'
run: bin/bundle exec rspec spec/controllers spec/requests spec/views
- name: 'Run Rspec Feature Tests'
run: bin/bundle exec rspec spec/features