From 2a638c81fdd78f01fd242c786d28826c522b9639 Mon Sep 17 00:00:00 2001 From: rabbitism Date: Wed, 6 Nov 2024 23:24:30 +0800 Subject: [PATCH] feat: add test to github actions. --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..da585d0 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Test + +on: + push: + branches: [ "action/publish" ] + pull_request: + branches: [ "main" ] + +jobs: + windows: + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v4.1.1 + + - name: Ursa Headless Test + run: dotnet test ./tests/HeadlessTest.Ursa \ No newline at end of file