Skip to content

Add license files

Add license files #143

Workflow file for this run

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:
matrix:
product:
- cockroach
- cockroach@22.2
- cockroach@23.1
- cockroach-sql
- ccloud
name: ${{ matrix.product }} formula tests
runs-on: macos-latest
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