WAF SynchronizingList add support for IEnumerable and isReadOnly flag #284
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: System.Waf.CI | |
on: | |
push: | |
paths: | |
- 'src/*' | |
- 'src/System.Waf/**' | |
- '.github/workflows/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: NuGet clear | |
run: dotnet nuget locals all --clear | |
- name: Build | |
run: dotnet build ./src/System.Waf/System.Waf.sln -c Release -p:ContinuousIntegrationBuild=true | |
- name: Test | |
run: dotnet test ./src/System.Waf/System.Waf.sln -c Release --no-build | |
- name: Upload NuGet packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
if-no-files-found: error | |
path: | | |
src/System.Waf/System.Waf/**/*.nupkg | |
src/System.Waf/System.Waf/**/*.snupkg |