diff --git a/.github/workflows/test-install.yml b/.github/workflows/test-install.yml new file mode 100644 index 0000000..7ccb4b4 --- /dev/null +++ b/.github/workflows/test-install.yml @@ -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 \ No newline at end of file