Skip to content

Commit

Permalink
ci: extract upstream.yml pipeline
Browse files Browse the repository at this point in the history
to test edge rubies
  • Loading branch information
flavorjones committed Mar 23, 2024
1 parent f89dc84 commit 3cff941
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "jruby-9.4", "truffleruby", "head", "jruby-head", "truffleruby-head"]

ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "jruby-9.4", "truffleruby"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "ci"
name: "upstream"

concurrency:
group: "${{github.workflow}}-${{github.ref}}"
Expand All @@ -19,7 +19,16 @@ on:
- .github/workflows/upstream.yml # this file

jobs:
skeleton:
test:
strategy:
fail-fast: false
matrix:
ruby-version: ["head", "jruby-head", "truffleruby-head"]
runs-on: ubuntu-latest
steps:
- run: echo "Hello, World!"
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby-version}}
bundler-cache: true
- run: bundle exec rake test

0 comments on commit 3cff941

Please sign in to comment.