-
Notifications
You must be signed in to change notification settings - Fork 6
86 lines (83 loc) · 2.67 KB
/
ruby-client-workflow.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
name: "[CI] Ruby Client"
on:
pull_request:
paths:
- ".github/workflows/ruby-client-workflow.yml"
- "bulletin_board/ruby-client/**"
push:
branches:
- develop
- main
env:
CI: "true"
SIMPLECOV: "true"
RUBY_VERSION: 3.1.1
defaults:
run:
working-directory: ./bulletin_board/ruby-client
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@v0.3.2
if: "github.ref != 'refs/heads/develop'"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ruby/setup-ruby@master
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Recover dependency cache
uses: actions/cache@v1
with:
path: ./bulletin_board/ruby-client/vendor/bundle
key: ${{ runner.OS }}-ruby-client-deps-${{ hashFiles('bulletin_board/ruby-client/Gemfile.lock') }}
restore-keys: |
${{ runner.OS }}-ruby-client-deps-${{ env.cache-name }}-
${{ runner.OS }}-ruby-client-deps-
${{ runner.OS }}-ruby-client-
- name: Install Ruby deps
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
max_attempts: 3
command: cd bulletin_board/ruby-client && bundle install --path vendor/bundle --jobs 4 --retry 3
- name: Install Rubocop
run: gem install rubocop
- run: bundle exec rubocop -P
name: Lint Ruby files
rspec-test:
name: RSpec tests
needs: lint
runs-on: ubuntu-22.04
steps:
- uses: rokroskar/workflow-run-cleanup-action@v0.3.2
if: "github.ref != 'refs/heads/develop'"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ruby/setup-ruby@master
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Recover dependency cache
uses: actions/cache@v1
with:
path: ./bulletin_board/ruby-client/vendor/bundle
key: ${{ runner.OS }}-ruby-client-deps-${{ hashFiles('bulletin_board/ruby-client/Gemfile.lock') }}
restore-keys: |
${{ runner.OS }}-ruby-client-deps-${{ env.cache-name }}-
${{ runner.OS }}-ruby-client-deps-
${{ runner.OS }}-ruby-client-
- name: Install Ruby deps
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
max_attempts: 3
command: cd bulletin_board/ruby-client && bundle install --path vendor/bundle --jobs 4 --retry 3
- name: Run tests
run: bundle exec rspec