We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents edfb7e8 + 421764f commit 122dd87Copy full SHA for 122dd87
.github/workflows/test.yml
@@ -41,3 +41,23 @@ jobs:
41
- name: Run test
42
run: bundle exec rake compile test
43
timeout-minutes: 5
44
+
45
+ test2:
46
+ runs-on: ${{ matrix.os }}
47
+ strategy:
48
+ fail-fast: false
49
+ matrix:
50
+ include:
51
+ - os: ubuntu-24.04-ppc64le
52
+ - os: ubuntu-24.04-s390x
53
+ steps:
54
+ - uses: actions/checkout@v4
55
+ - name: Set up Ruby
56
+ run: |
57
+ sudo apt-get update
58
+ sudo apt-get install ruby-full bundler zlib1g-dev
59
+ - name: Install dependencies
60
+ run: sudo bundle install --jobs 2
61
+ - name: Run test
62
+ run: bundle exec rake compile test
63
+ timeout-minutes: 5
.travis.yml
0 commit comments