Skip to content

Commit

Permalink
add installer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.eades committed Aug 5, 2024
1 parent b28af6c commit 572c101
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Installer Test

on:
push:
branches: [main]
pull_request:

jobs:
test:
name: installer (${{ matrix.os }})
strategy:
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: Install D2
run: |
cat install.sh | sh -s --

0 comments on commit 572c101

Please sign in to comment.