Skip to content

chore: prep repo for move to github.com/procore-oss (open-source) github org #2

chore: prep repo for move to github.com/procore-oss (open-source) github org

chore: prep repo for move to github.com/procore-oss (open-source) github org #2

Workflow file for this run

name: Test
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ['3.0', '3.1', '3.2']
include:
- os: ubuntu-20.04
ruby: '2.7'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Installing dependencies
run: bundle install
- name: Run tests
run: COVERAGE=true bundle exec rake