You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
589 B
28 lines
589 B
1 year ago
|
name: UI Tests
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
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
|