Skip to content

Commit

Permalink
Add automated testing
Browse files Browse the repository at this point in the history
  • Loading branch information
confused-Techie committed Aug 2, 2023
1 parent f5887e4 commit b5ea0fa
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-20.04, macos-latest, windows-2019]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the Latest Package Code
uses: actions/checkout@v3
- name: Setup Pulsar Editor
uses: pulsar-edit/[email protected]
- name: Run the headless Pulsar Tests
uses: coactions/[email protected]
with:
run: pulsar --test spec

0 comments on commit b5ea0fa

Please sign in to comment.