Skip to content

Add USCore 3.1.1 test group, CRD profile tests #25

Add USCore 3.1.1 test group, CRD profile tests

Add USCore 3.1.1 test group, CRD profile tests #25

Workflow file for this run

name: Ruby
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1.2"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1.2"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
lint:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1.2"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Rubocop
run: bundle exec rubocop