Skip to content

Commit

Permalink
ci: add installation test for OS and arch
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBeucher committed Jul 30, 2024
1 parent e29ff95 commit 2ff9550
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Test installation script

on:
push:
branches:
- "*"
pull_request:
branches:
- master

jobs:
test-install:
name: Run install.sh on various OS and CPU architecture
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- ubuntu-24.04
# - ubuntu-22.04
# - ubuntu-20.04
# - macos-14
# - macos-13
# - macos-12
# arch:
# - x64
# - arm64

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Run install script
run: |
./install.sh
- name: Check version
run: cloudypad --version

0 comments on commit 2ff9550

Please sign in to comment.