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 a4d81f6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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 a4d81f6

Please sign in to comment.