mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-11 14:39:22 +00:00
b01500237f
Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>
28 lines
562 B
YAML
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
|