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+ # These are supported funding model platforms
2+
3+ github : # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+ patreon : # Replace with a single Patreon username
5+ open_collective : # Replace with a single Open Collective username
6+ ko_fi : trueromanus
7+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+ liberapay : # Replace with a single Liberapay username
10+ issuehunt : # Replace with a single IssueHunt username
11+ lfx_crowdfunding : # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+ polar : # Replace with a single Polar username
13+ buy_me_a_coffee : # Replace with a single Buy Me a Coffee username
14+ thanks_dev : # Replace with a single thanks.dev username
15+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change 1+ name : CI and Tests
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+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v4
18+ with :
19+ dotnet-version : 8.0.x
20+ - name : Restore dependencies
21+ run : dotnet restore src/SciterAPI.sln
22+ - name : Build
23+ run : dotnet build --no-restore src/SciterAPI.sln
24+ - name : Test
25+ run : dotnet test --no-build --verbosity normal src/SciterAPI.sln
Original file line number Diff line number Diff line change 11 [ ![ nugeticon] ( https://img.shields.io/badge/nuget-available-blue )] ( https://www.nuget.org/packages/EmptyFlow.SciterAPI )
2+ [ ![ nugeticon] ( https://img.shields.io/nuget/dt/emptyflow.sciterapi )] ( https://www.nuget.org/packages/EmptyFlow.SciterAPI )
23
34# SciterAPI
45C# cross platform binding and low-level helpers for Sciter HTML/CSS/JS rendering library. You can check out more about Sciter [ here] ( https://sciter.com/ ) .
You can’t perform that action at this time.
0 commit comments