Skip to content

Commit 847e242

Browse files
committed
Let us add some CI
1 parent f844b88 commit 847e242

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

.github/workflows/dotnet.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: .NET
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- name: Setup .NET 8.0
12+
uses: actions/setup-dotnet@v3
13+
with:
14+
dotnet-version: '8.0.x'
15+
- name: Restore dependencies
16+
run: dotnet restore
17+
- name: Build
18+
run: dotnet build --no-restore
19+
- name: Unit tests
20+
run: dotnet test --verbosity m --no-build
21+
continue-on-error: false

SimdUnicode.sln

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "benchmark", "benchmark\benchmark.csproj", "{6C7744C5-AF3E-446A-8475-A03001989AB8}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimdUnicode", "src\SimdUnicode.csproj", "{14D65B6D-24CD-4616-AAEF-BDBEB5E390A0}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tests", "test\tests.csproj", "{BDAFE9A2-0CC2-4F72-919F-5D9A8D185EBE}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{6C7744C5-AF3E-446A-8475-A03001989AB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{6C7744C5-AF3E-446A-8475-A03001989AB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{6C7744C5-AF3E-446A-8475-A03001989AB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{6C7744C5-AF3E-446A-8475-A03001989AB8}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{14D65B6D-24CD-4616-AAEF-BDBEB5E390A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{14D65B6D-24CD-4616-AAEF-BDBEB5E390A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{14D65B6D-24CD-4616-AAEF-BDBEB5E390A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{14D65B6D-24CD-4616-AAEF-BDBEB5E390A0}.Release|Any CPU.Build.0 = Release|Any CPU
29+
{BDAFE9A2-0CC2-4F72-919F-5D9A8D185EBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{BDAFE9A2-0CC2-4F72-919F-5D9A8D185EBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{BDAFE9A2-0CC2-4F72-919F-5D9A8D185EBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{BDAFE9A2-0CC2-4F72-919F-5D9A8D185EBE}.Release|Any CPU.Build.0 = Release|Any CPU
33+
EndGlobalSection
34+
EndGlobal

0 commit comments

Comments
 (0)