Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Update README.md

Update README.md #17

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build Library
run: dotnet build --configuration Release --no-restore
working-directory: ./AspNetCore.SassCompiler
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Validate generated css files
run: |
test -s Samples/AspNetCore.SassCompiler.Sample31/wwwroot/css/site_sass.css
test -s Samples/AspNetCore.SassCompiler.Sample/wwwroot/css/site_sass.css
test -s Samples/AspNetCore.SassCompiler.BlazorSample/Pages/Counter.razor.css
test -s Samples/AspNetCore.SassCompiler.BlazorSample/obj/Release/net6.0/scopedcss/Pages/Counter.razor.rz.scp.css