-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 858 Bytes
/
Copy pathrcc.yml
File metadata and controls
47 lines (39 loc) · 858 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
---
name: "RCC"
on:
push:
paths:
- .github/workflows/rcc.yml
pull_request:
paths:
- .github/workflows/rcc.yml
workflow_call: {}
jobs:
build_rcc_from_source:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
with:
repository: robocorp/rcc
ref: v14.15.4
path: rcc
- name: "Setup Go"
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
- name: "Setup Rake"
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: "Build RCC"
working-directory: rcc
run: rake build
- name: "Test RCC"
working-directory: rcc
run: rake test
- name: "Upload Artifact"
uses: actions/upload-artifact@v3
with:
path: rcc/build
if-no-files-found: error