Skip to content

Commit

Permalink
Test install script
Browse files Browse the repository at this point in the history
  • Loading branch information
eikek committed Jul 12, 2024
1 parent 33d0025 commit 4fb699f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: install-check

on:
pull_request:
push:
branches:
- main

concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
check:
name: check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run installer
run: ./install.sh -v

- name: Run binary
run: rnk --version

0 comments on commit 4fb699f

Please sign in to comment.