File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : .NET
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+ strategy :
14+ matrix :
15+ dotnet-version : [ '3.1.x', '5.0.x' ]
16+
17+ steps :
18+ - uses : actions/checkout@v2
19+ - name : Setup .NET
20+ uses : actions/setup-dotnet@v1
21+ - name : Restore dependencies
22+ run : dotnet restore ./Src/VirtualFileSystem.sln
23+ - name : Build
24+ run : dotnet build --no-restore ./Src/VirtualFileSystem.sln
25+ - name : Test
26+ run : dotnet test --no-build --verbosity normal ./Src/VirtualFileSystem.sln
Original file line number Diff line number Diff line change 22
33# Axuno.VirtualFileSystem
44
5+ ![ ] ( https://github.com/axuno/Axuno.VirtualFileSystem/workflows/.NET/badge.svg )
6+
57The Virtual File System makes it possible to manage files that do not exist on a physical file system (e.g. disk).
68
79* The ``` VirtualFileSystem ``` can be extended by additional ``` IVirtualFileProvider ``` s.
You can’t perform that action at this time.
0 commit comments