Automerge version bumps #135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |