Skip to content
Merged
Changes from 2 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
14 changes: 1 addition & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ jobs:
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 +58,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
Loading