add installer tests
This commit is contained in:
parent
b28af6c9e2
commit
572c101b55
1 changed files with 19 additions and 0 deletions
19
.github/workflows/installer.yml
vendored
Normal file
19
.github/workflows/installer.yml
vendored
Normal file
|
|
@ -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 --
|
||||
Loading…
Reference in a new issue