Merge pull request #13 from avinassh/12-install-arm #36
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
# test installation of the script on pull request and merge | |
name: Install Script Workflow | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, macos-14] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: OS and arch | |
run: | | |
echo "Runner label: ${{ matrix.os }}" | |
echo "OS: $(uname -s) Arch: $(uname -m)" | |
- name: Run Install Script | |
run: | | |
export TURSO_INSTALL_SKIP_SIGNUP=true | |
bash install.sh | |
- name: Verify CLI installation | |
run: $HOME/.turso/turso --version | |
- name: Verify LibSQL Server installation | |
run: $HOME/.turso/sqld --version |