-
-
Notifications
You must be signed in to change notification settings - Fork 217
43 lines (43 loc) · 1.36 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- { ruby: "2.7" }
- { ruby: "2.7", concurrency: async-websocket }
- { ruby: "3.0" }
- { ruby: "3.1" }
- { ruby: "3.2" }
- { ruby: ruby-head, ignore: true }
- { ruby: jruby-head, ignore: true }
name: test (ruby=${{ matrix.entry.ruby }}, concurrency=${{ matrix.entry.concurrency || 'none' }})
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
bundler-cache: true
- name: Set Concurrency
run: |
if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then
echo "Setting concurrency to ${{ matrix.entry.concurrency }}."
echo "CONCURRENCY=${{ matrix.entry.concurrency }}" >> $GITHUB_ENV
fi
- name: Run Tests
continue-on-error: ${{ matrix.entry.ignore || false }}
env:
RACK_ENV: test
run: |
bundle install
bundle exec rake
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Coveralls Finished
uses: coverallsapp/github-action@master