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 e663466
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ concurrency:
cancel-in-progress: true

jobs:
check:
name: check
check-linux-macos:
name: "check linux and macos"
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -61,9 +61,25 @@ jobs:
command: run
args: --release --features user-doc -- user-doc ./docs

check-installer:
name: "check installer"
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

ci:
runs-on: ubuntu-latest
needs: [check, check-win]
needs: [check-linux-macos, check-win, check-installer]
steps:
- name: Aggregate of lint, and all tests
run: echo "ci passed"

0 comments on commit e663466

Please sign in to comment.