Skip to content

Commit d4902cd

Browse files
authored
Create CI.yml
1 parent 9d975e8 commit d4902cd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/CI.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: [pull_request]
3+
4+
jobs:
5+
build:
6+
name: Module imports on all platforms
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macOS-latest]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Perform the import
16+
shell: pwsh
17+
run: Import-Module ./dbops.psd1 -ErrorAction Stop

0 commit comments

Comments
 (0)