-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.22 KB
/
ci.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
name: "CI Tests"
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: "Ruby ${{ matrix.ruby }}, Rails ${{ matrix.gemfile }}"
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
gemfile:
- "6.1"
- "7.0"
ruby:
- "3.0.0"
- "3.1.0"
- "3.2.2"
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.gemfile }}.gemfile
RAILS_ENV: test
steps:
- uses: actions/checkout@v2
- name: "Install Ruby ${{ matrix.ruby }}"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Reset app database"
run: bundle exec rake fake:db:reset
- name: "Run tests without acceptance"
run: |
bundle exec rake test
- name: "Run acceptance tests for RSpec"
run: |
bundle add rspec-rails
bundle exec rake TEST=test/acceptance/testing_test.rb TESTOPTS="--name='test_rspec_tests'"
- name: "Run acceptance tests for TestUnit"
run: |
bundle remove rspec-rails
bundle exec rake TEST=test/acceptance/testing_test.rb TESTOPTS="--name='test_test_unit_tests'"