-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (38 loc) · 1.07 KB
/
test.yml
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
name: test
on:
pull_request:
types: [opened, synchronize]
push:
branches: [main]
workflow_dispatch:
# Note: all jobs in this workflow run on GitHub-hosted runners.
# None of them need authenticated (token) access to the repository.
#
# If this were to change and they do need authenticated access, make sure to use the
# self-hosted runners listed on the "Settings" -> "Actions" -> "Runners" page.
#
jobs:
install:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git
uses: Homebrew/actions/git-user-config@master
# This action automatically installs the locally checked out tap.
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Check the CLI formula
run: |
brew style databricks
- name: Install CLI
run: |
brew install databricks
- name: Run CLI
run: |
databricks version