Skip to content

Commit

Permalink
ci upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
dpep committed Aug 8, 2024
1 parent 02f1901 commit c129082
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ updates:
interval: "weekly"
pull-request-branch-name:
separator: "-"
versioning-strategy: lockfile-only
13 changes: 7 additions & 6 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Ruby checks
name: Ruby

on:
push:
branches: [ "main" ]
branches: [ main ]
pull_request:
types: [ opened, edited, synchronize ]

jobs:
test:
Expand All @@ -13,13 +12,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: [ 3.1, 3.0, 2.7 ]
ruby-version: [ 3, 3.1, "3.0" ]

name: Ruby ${{ matrix.ruby-version }}

steps:
- name: clone ${{ github.repository }}
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
Expand All @@ -28,4 +27,6 @@ jobs:
- name: run tests
run: bundle exec rspec
- name: upload code coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit c129082

Please sign in to comment.