forked from ManageIQ/more_core_extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (49 loc) · 1021 Bytes
/
ci.yaml
File metadata and controls
49 lines (49 loc) · 1021 Bytes
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
48
49
name: CI
on:
pull_request:
push:
branches-ignore:
- dependabot/*
- renovate/*
schedule:
- cron: 0 0 * * 0
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- '4.0'
- ruby-head
rails-version:
- '7.2'
- '8.0'
- '8.1'
exclude:
- ruby-version: '3.1'
rails-version: '8.1'
- ruby-version: '3.1'
rails-version: '8.0'
env:
TEST_RAILS_VERSION: "${{ matrix.rails-version }}"
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
timeout-minutes: 30
- name: Run tests
run: bundle exec rake