Skip to content

Commit

Permalink
Merge branch 'master' of github.com:cqfn/pdd
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 29, 2025
2 parents 0c1f017 + 95ed131 commit 1fa425d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: codecov
on:
'on':
push:
branches:
- master
Expand All @@ -9,15 +9,17 @@ on:
- master
jobs:
codecov:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- run: bundle update
ruby-version: 3.3
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec rake
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
4 changes: 2 additions & 2 deletions .github/workflows/pdd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: pdd
on:
'on':
push:
branches:
- master
Expand All @@ -9,7 +9,7 @@ on:
- master
jobs:
pdd:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: volodya-lombrozo/pdd-action@master
6 changes: 4 additions & 2 deletions .github/workflows/rake.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: rake
on:
'on':
push:
branches:
- master
Expand All @@ -20,5 +20,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle update
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec rake

0 comments on commit 1fa425d

Please sign in to comment.