Skip to content

chore(deps): bump ruby/setup-ruby from 1.174.0 to 1.175.0 (#135) #283

chore(deps): bump ruby/setup-ruby from 1.174.0 to 1.175.0 (#135)

chore(deps): bump ruby/setup-ruby from 1.174.0 to 1.175.0 (#135) #283

Workflow file for this run

name: "CI"
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
checks: write
env:
RAILS_ENV: test
strategy:
fail-fast: true
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
steps:
- name: Checkout code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Install Ruby and gems
uses: ruby/setup-ruby@70da3bbf44ac06db1b0547ce2acc9380a5270d1e
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
rubygems: "3.5.9"
- name: Run RSpec Tests
timeout-minutes: 20
run: bundle exec rspec -f doc
lint:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Install Ruby and gems
uses: ruby/setup-ruby@70da3bbf44ac06db1b0547ce2acc9380a5270d1e
with:
bundler-cache: true
ruby-version: "3.1"
- name: Bundle Audit Check
run: bundle exec bundle-audit update && bundle exec bundle-audit check
- name: Setup Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: "3.10"
- name: Run pre-commit
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd