Skip to content

Update dependency minitest to v5.25.4 #166

Update dependency minitest to v5.25.4

Update dependency minitest to v5.25.4 #166

Workflow file for this run

---
name: rake
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: test
strategy:
matrix:
os: [ubuntu-24.04]
ruby: [3.0, 3.3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install -y postgresql-14
sudo ln -s /usr/lib/postgresql/14/bin/initdb /bin/initdb
sudo ln -s /usr/lib/postgresql/14/bin/postgres /bin/postgres
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec rake