-
Notifications
You must be signed in to change notification settings - Fork 22
34 lines (31 loc) · 903 Bytes
/
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
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:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-latest # amd64
- macos-latest-xlarge # arm64
product:
- cockroach
- cockroach@23.1
- cockroach@23.2
- cockroach-sql
- ccloud
name: ${{ matrix.product }} formula tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install ${{ matrix.product }} formula
run: brew install ./Formula/${{matrix.product }}.rb
- name: test ${{ matrix.product }} formula
run: brew test ./Formula/${{ matrix.product }}.rb