Skip to content

Merge pull request #71 from openfoodfacts/dependabot/github_actions/t… #121

Merge pull request #71 from openfoodfacts/dependabot/github_actions/t…

Merge pull request #71 from openfoodfacts/dependabot/github_actions/t… #121

Workflow file for this run

name: Ruby
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-slim
strategy:
fail-fast: false
matrix:
ruby: [3.2, 3.3, 3.4]
steps:
- uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake