Update dependency minitest to v5.25.1 #138
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: rake | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: test | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
ruby: [3.0, 2.7] | |
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 }} | |
- run: bundle update | |
- run: bundle exec rake |