0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-11-11 14:39:22 +00:00
libsql/.github/workflows/brew-test.yml
Piotr Jastrzębski b01500237f
Switch CI to use Github Macos runners (#977)
Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>
2024-02-01 10:44:12 +00:00

28 lines
562 B
YAML

name: Workflow to test our brew installations
on:
workflow_dispatch:
jobs:
install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-14 ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Brew install tap
run: |
brew tap libsql/sqld
brew install libsql-server
- name: Verify CLI installation
run: sqld --version