-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (46 loc) · 1 KB
/
ci.yaml
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
50
---
name: QA🚦
on:
pull_request: {}
push:
paths-ignore:
- '.github/**'
branches:
- main
jobs:
build_test_container:
name: 'Build test container'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: voxpupuli/gha-build-and-publish-a-container@v2
with:
registry_password: ${{ secrets.GITHUB_TOKEN }}
publish: 'false'
test_gem_installation:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
tests:
needs:
- build_test_container
- test_gem_installation
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed