-
Notifications
You must be signed in to change notification settings - Fork 88
47 lines (46 loc) · 1.3 KB
/
ubuntu.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
44
45
46
47
name: test
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
branches:
- '*'
push:
branches:
- master
tags:
- v*.*.*
schedule:
- cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3
jobs:
ruby-versions:
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
with:
min_version: 2.5
test:
needs: ruby-versions
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ruby: ${{fromJson(needs.ruby-versions.outputs.versions)}}
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- {os: windows-latest, ruby: truffleruby-head}
- {os: windows-latest, ruby: truffleruby}
- {os: windows-latest, ruby: jruby-head}
- {os: windows-latest, ruby: jruby }
- {os: macos-latest, ruby: truffleruby }
- {os: macos-latest, ruby: truffleruby-head }
- {os: macos-latest, ruby: jruby }
- {os: macos-latest, ruby: jruby-head }
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- run: bundle exec rake compile test