forked from micro-ROS/micro-ROS.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (30 loc) · 720 Bytes
/
ci.yml
File metadata and controls
39 lines (30 loc) · 720 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
name: CI
on:
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Set up Ruby 3.4.5
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.5
- name: Install Bundler
run: gem install bundler -v 2.7.2
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install
- name: Test web site changes
run: ./scripts/cibuild