-
Notifications
You must be signed in to change notification settings - Fork 22
58 lines (55 loc) · 1.71 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
51
52
53
54
55
56
57
58
name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
cockroach-test:
name: cockroach formula tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install cockroach formula
run: brew install ./Formula/cockroach.rb
- name: test cockroach formula
run: brew test ./Formula/cockroach.rb
cockroach-231-test:
name: [email protected] formula tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install cockroach formula
run: brew install ./Formula/[email protected]
- name: test cockroach formula
run: brew test ./Formula/[email protected]
cockroach-222-test:
name: [email protected] formula tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install cockroach formula
run: brew install ./Formula/[email protected]
- name: test cockroach formula
run: brew test ./Formula/[email protected]
cockroach-sql-test:
name: cockroach-sql formula tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install cockroach-sql formula
run: brew install ./Formula/cockroach-sql.rb
- name: test cockroach formula
run: brew test ./Formula/cockroach-sql.rb
ccloud-test:
name: ccloud formula tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install ccloud formula
run: brew install ./Formula/ccloud.rb
- name: test ccloud formula
run: brew test ./Formula/ccloud.rb