mirror of
https://github.com/simtactics/servo.git
synced 2025-10-15 06:03:29 -04:00
Servo VS solution
- Created VS solution for expanding upon the notebook code - Renamed LimitToRange() to MaxLimit() and adjusted it's algorithm
This commit is contained in:
parent
40f06695bc
commit
2993056967
9 changed files with 733 additions and 139 deletions
22
.github/workflows/dotnet.yml
vendored
Normal file
22
.github/workflows/dotnet.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: .NET
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
dotnet: [ '3.1.200', '3.1.201' ]
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: ${{ matrix.dotnet }}
|
||||
- name: Install dependencies
|
||||
run: dotnet restore source
|
||||
- name: Build
|
||||
run: dotnet build source -c Release --no-restore
|
Loading…
Add table
Add a link
Reference in a new issue