-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (94 loc) · 2.55 KB
/
ci.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: ci
jobs:
specs:
needs: diffend
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
include:
- ruby: '3.3'
coverage: 'true'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install package dependencies
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install latest bundler
run: |
gem install bundler -N
- name: Bundle install
env:
DIFFEND_DEVELOPMENT: true
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run all tests
env:
GITHUB_COVERAGE: ${{matrix.coverage}}
run: |
git config --global user.email "ci@coditsu.io"
git config --global user.name "Coditsu CI"
bundle exec rspec
diffend:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: Install latest bundler
run: gem install bundler -N
- name: Install Diffend plugin
run: bundle plugin install diffend
- name: Bundle Secure
run: bundle secure
coditsu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Coditsu
env:
CODITSU_API_KEY: ${{ secrets.CODITSU_API_KEY }}
CODITSU_API_SECRET: ${{ secrets.CODITSU_API_SECRET }}
run: \curl -sSL https://api.coditsu.io/run/ci | bash
coditsu-candidate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Coditsu
env:
CODITSU_API_KEY: ${{ secrets.CODITSU_API_KEY }}
CODITSU_API_SECRET: ${{ secrets.CODITSU_API_SECRET }}
CODITSU_IMAGE_TAG: candidate
run: \curl -sSL https://api.coditsu.io/run/ci | bash
on:
push:
schedule:
- cron: '0 1 * * *'