Skip to content

Merge pull request #49 from procore-oss/dependabot/github_actions/tj-… #120

Merge pull request #49 from procore-oss/dependabot/github_actions/tj-…

Merge pull request #49 from procore-oss/dependabot/github_actions/tj-… #120

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test-current:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ["3.1", "3.2", "3.3"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@f321cf5a4d1533575411f8752cf25b86478b0442 # v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Installing dependencies
run: |
bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
bundle exec appraisal install --path=vendor/bundle
- name: Run tests
run: bundle exec appraisal rake test
test-3_0:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ["3.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@f321cf5a4d1533575411f8752cf25b86478b0442 # v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Installing dependencies
run: |
bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
bundle exec appraisal ar-6.1 bundle install --path=vendor/bundle
bundle exec appraisal ar-7.0 bundle install --path=vendor/bundle
bundle exec appraisal ar-7.1 bundle install --path=vendor/bundle
- name: Run tests
run: |
bundle exec appraisal ar-6.1 rake test
bundle exec appraisal ar-7.0 rake test
bundle exec appraisal ar-7.1 rake test