-
Notifications
You must be signed in to change notification settings - Fork 135
47 lines (41 loc) · 1.48 KB
/
ruby_unit_tests.yml
File metadata and controls
47 lines (41 loc) · 1.48 KB
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
# Reference environment variables: https://docs.github.com/en/actions/reference/environment-variables
name: Cosmos 5 Ruby Unit Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
RUBYGEMS_URL: https://rubygems.org
jobs:
unit-test:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0", "3.1"]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
working-directory: cosmos
- name: Run unit tests
run: bundle exec rake build spec
working-directory: cosmos
env:
COSMOS_DEVEL: ${GITHUB_WORKSPACE}/cosmos
- name: Run unit tests without extensions
run: bundle exec rspec --tag no_ext
working-directory: cosmos
env:
COSMOS_NO_EXT: 1
COSMOS_DEVEL: ${GITHUB_WORKSPACE}/cosmos