From ec2ef0ab110a3aed7693029849fca3557f992c4a Mon Sep 17 00:00:00 2001 From: Nobuaki Tanaka Date: Thu, 30 Oct 2025 20:33:17 +0900 Subject: [PATCH] Add CI workflow for unit tests --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..b9fde0f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Test + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - run: dotnet restore + - run: dotnet test NumFlat.sln --configuration Release