Skip to content

Commit

Permalink
Merge pull request #16 from STFleming/actions_bringup
Browse files Browse the repository at this point in the history
Windows GH actions
  • Loading branch information
STFleming authored Mar 15, 2024
2 parents c74375d + 894da76 commit e516280
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/win_buildAndRun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Windows Riallto CI Testing

on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CONTRIBUTING.md'
- 'LICENSE**'
- 'notebooks/**'
- 'scripts/utils/**'
- 'scripts/wsl/**'
- '**/*.ipynb'
- '.github/ISSUE_TEMPLATE/**'
- '.github/*.md'
pull_request:
types: [assigned, opened, synchronize, reopened]
paths-ignore:
- 'README.md'
- 'CONTRIBUTING.md'
- 'LICENSE**'
- 'notebooks/**'
- 'scripts/utils/**'
- 'scripts/wsl/**'
- '**/*.ipynb'
- '.github/ISSUE_TEMPLATE/**'
- '.github/*.md'
workflow_dispatch:

jobs:
birman-tests:
name: not-birman-15-tests
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1

- name: run pytests
run: |
activate_venv.ps1 ; py.exe -m pip install .; py.exe -m pytest ./tests

0 comments on commit e516280

Please sign in to comment.