Skip to content

Commit

Permalink
Add workflow to check installation script (#54)
Browse files Browse the repository at this point in the history
Closes #17
  • Loading branch information
ddoktorski authored Sep 6, 2024
1 parent 059b36b commit 2d51480
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/installation_script_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Check installation script

on:
pull_request:
paths:
- scripts/install.sh
- .github/workflows/installation_script_check.yml
push:
branches:
- main
paths:
- scripts/install.sh
- .github/workflows/installation_script_check.yml
release:
types:
- published

jobs:
verify-installation-script:
name: Verify installation script
runs-on: ${{ matrix.os }}

strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest

- target: aarch64-apple-darwin
os: macos-latest

steps:
- uses: actions/checkout@v4

- name: Install and check
shell: bash
run: |
bash ./scripts/install.sh
source ~/.bashrc
if ! command -v cairo-coverage &> /dev/null; then
echo "cairo-coverage was not installed"
exit 1
fi

0 comments on commit 2d51480

Please sign in to comment.