mirror of
https://github.com/simtactics/servo.git
synced 2025-03-22 11:02:19 +00:00
23 lines
527 B
YAML
23 lines
527 B
YAML
|
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
|