Ionite
1 year ago
1 changed files with 31 additions and 0 deletions
@ -0,0 +1,31 @@
|
||||
name: UI Tests |
||||
|
||||
on: |
||||
workflow_dispatch: |
||||
push: |
||||
branches: [ main ] |
||||
pull_request: |
||||
branches: [ main ] |
||||
|
||||
concurrency: |
||||
group: build-${{ github.event.pull_request.number || github.ref }} |
||||
cancel-in-progress: true |
||||
|
||||
jobs: |
||||
build: |
||||
if: github.repository == 'LykosAI/StabilityMatrix' || github.event_name == 'workflow_dispatch' |
||||
runs-on: windows-latest |
||||
|
||||
steps: |
||||
- uses: actions/checkout@v3 |
||||
|
||||
- name: Set up .NET |
||||
uses: actions/setup-dotnet@v3 |
||||
with: |
||||
dotnet-version: '7.0.x' |
||||
|
||||
- name: Install dependencies |
||||
run: dotnet restore |
||||
|
||||
- name: Test |
||||
run: dotnet test StabilityMatrix.UITests |
Loading…
Reference in new issue