Skip to content

Commit

Permalink
Add a CI workflow (#3)
Browse files Browse the repository at this point in the history
The CI workflow will run the test psake task. This will make sure folks
always link stuff, etc.
  • Loading branch information
HeyItsGilbert authored Oct 6, 2024
1 parent 680e2bc commit 09a9cef
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Test
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test
shell: pwsh
run: ./build.ps1 -Task Test -Bootstrap

0 comments on commit 09a9cef

Please sign in to comment.