Skip to content

Commit

Permalink
#108 path for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 30, 2024
1 parent 8e337f4 commit d8cc85e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
bundler-cache: true
- 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
sudo apt-get install -y postgresql
sudo ln -s "$(realpath /usr/lib/postgresql/*/bin/initdb)" /bin/initdb
sudo ln -s "$(realpath /usr/lib/postgresql/*/bin/postgres)" /bin/postgres
- run: bundle install
- run: bundle exec rake
- uses: codecov/codecov-action@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:
name: test
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-24.04]
ruby: [3.2]
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
sudo apt-get install -y postgresql
sudo ln -s "$(realpath /usr/lib/postgresql/*/bin/initdb)" /bin/initdb
sudo ln -s "$(realpath /usr/lib/postgresql/*/bin/postgres)" /bin/postgres
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand Down

0 comments on commit d8cc85e

Please sign in to comment.