Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,10 @@ jobs:
name: Test (${{ matrix.ruby-version }})
# this version of jruby isn't available in the new latest (24.04) so we have to pin (or update jruby)
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.dev-build }}
strategy:
matrix:
# following https://docs.stripe.com/sdks/versioning?lang=ruby#stripe-sdk-language-version-support-policy
ruby-version: [2.6, 2.7, '3.0', 3.1, 3.2, 3.3, 3.4, jruby-9.4.0.0, truffleruby-25.0.0]
dev-build: [false]
include:
# truffleruby-head refers to a dev build which could cause breakage between releases
- ruby-version: truffleruby-head
dev-build: true

steps:
- uses: extractions/setup-just@v2
- uses: actions/checkout@v3
Expand All @@ -64,13 +57,7 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}
- uses: stripe/openapi/actions/stripe-mock@master
- name: test
run: |
if ! just test typecheck 2> /dev/null; then
if [[ ${{ matrix.ruby-version }} == "truffleruby-head" ]]; then
echo "just test typecheck FAILED on truffleruby-head. intermittent failures may happen with this dev build, but we should keep an eye on this"
fi
exit 1
fi
run: just test typecheck
env:
GITHUB_TOKEN: ${{ secrets.github_token }}

Expand Down