Skip to content

Commit ef239b4

Browse files
committed
Add GHA for CI/CD
1 parent be5f108 commit ef239b4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
6+
pull_request:
7+
8+
jobs:
9+
validate:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
os: [windows-latest, ubuntu-latest, macos-latest]
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Run Continuous Integration
17+
shell: pwsh
18+
run: |
19+
cd ./__tests__
20+
Invoke-Pester -Output Detailed

0 commit comments

Comments
 (0)