Merge 572c101b55 into 4bcb6d47c7
This commit is contained in:
commit
32bde1384b
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