Fix installations for ARM machines #33
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
# 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 installation | |
run: $HOME/.turso/turso --version |