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 bf8075d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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 }}", "${{ matrix.arch }}" ]
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

0 comments on commit bf8075d

Please sign in to comment.