You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
725 B
42 lines
725 B
name: 'CI/CD Pipeline' |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
pull_request: |
|
workflow_dispatch: |
|
|
|
defaults: |
|
run: |
|
shell: bash |
|
|
|
jobs: |
|
|
|
test: |
|
name: Test |
|
runs-on: ubuntu-latest |
|
|
|
env: |
|
RAILS_ENV: test |
|
GEMFILE_RUBY_VERSION: 3.0.3 |
|
|
|
# Rails verifies the time zone in DB is the same as the time zone of the Rails app |
|
TZ: "Europe/London" |
|
|
|
|
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@v2 |
|
|
|
- name: Set up Ruby |
|
uses: ruby/setup-ruby@v1 |
|
with: |
|
ruby-version: 3.0.3 |
|
# runs 'bundle install' and caches installed gems automatically |
|
bundler-cache: true |
|
|
|
- name: Run tests |
|
run: | |
|
bundle exec rake spec |
|
|
|
|