Skip to content

Skip problematic criteria #1156

Skip problematic criteria

Skip problematic criteria #1156

Workflow file for this run

# 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
name: Ruby
on:
push:
branches:
- master
- cypress_v5
- cypress_v6
- cypress_v7
pull_request:
branches:
- master
- cypress_v5
- cypress_v6
- cypress_v7
jobs:
audit:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
bundle install
- name: Bundle audit check
run: |
bundle exec bundle-audit check --update
overcommit:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
- name: Run overcommit
run: |
git config --global user.email "travis@travis.ci"
git config --global user.name "Travis CI"
sudo npm install -g eslint@8.57.0
bundle exec overcommit --sign
bundle exec overcommit --run
cucumber-1:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run cucumber
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
max_attempts: 2
retry_on: error
command: bundle exec cucumber features/admin/ features/checklist_tests/ features/filtering_tests/ features/measure_tests/ features/multi_measure_tests/;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-cucumber-1
cucumber-2:
strategy:
fail-fast: false
runs-on: ubuntu-20.04
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run cucumber
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
max_attempts: 2
retry_on: error
command: bundle exec cucumber features/products/ features/program_tests/ features/records/ features/users/ features/vendors/;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-cucumber-2
unit-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test
run: |
RUBYOPT="-W0"
bundle exec rake test:units;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-unit
controllers-jobs-helpers-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test:jobs
run: |
RUBYOPT="-W0"
bundle exec rake test:jobs;
- name: Upload code jobs coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-job
- name: Run Rake test:helpers
run: |
RUBYOPT="-W0"
bundle exec rake test:helpers;
- name: Upload code helpers coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-helper
- name: Run Rake test:controllers
run: |
RUBYOPT="-W0"
bundle exec rake test:controllers;
- name: Upload controllers code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-controller
integration-test:
strategy:
fail-fast: false
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:7.0.6
ports:
- 27017:27017
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
# uses: ruby/setup-ruby@b12138f02d7d0c4d36f463e0885dc47ec25a52fe
with:
ruby-version: 3.2.2
- name: Install dependencies
run: |
. $HOME/.nvm/nvm.sh
nvm install 16.19
nvm use stable
bundle install
git clone -b cypress_v7 https://github.com/projecttacoma/cqm-execution-service.git /tmp/cqm-execution-service-56
yarn --cwd /tmp/cqm-execution-service-56 install --only=production
yarn --cwd /tmp/cqm-execution-service-56 start &
- name: Run Rake test
run: |
RUBYOPT="-W0"
bundle exec rake test:integration;
- name: Upload code coverage to codecov.io
uses: codecov/codecov-action@v3
with:
directory: coverage
name: codecov-integration