Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Create ci.yml
  • Loading branch information
mtrezza committed May 20, 2024
commit ce65da4d2bd9a246cf69f7683338736c1ce11d8a
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: ci
on:
push:
branches: [release, alpha, beta, next-major, 'release-[0-9]+.x.x']
pull_request:
branches:
- '**'
paths-ignore:
- '**/**.md'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up NuGet
uses: NuGet/[email protected]
- name: Restore NuGet packages
run: nuget restore Parse.sln
- name: Install Chocolatey
run: Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- name: Install OpenCover and Codecov
run: |
choco install opencover.portable -y
choco install codecov -y
- name: Build
run: msbuild Parse.sln /verbosity:minimal
- name: Run tests with coverage
run: |
OpenCover.Console.exe -target:dotnet.exe -targetargs:"test --test-adapter-path:. --logger:console /p:DebugType=full .\Parse.Tests\Parse.Tests.csproj" -filter:"+[Parse*]* -[Parse.Tests*]*" -oldstyle -output:parse_sdk_dotnet_coverage.xml -register:user
- name: Upload coverage to Codecov
run: codecov -f "parse_sdk_dotnet_coverage.xml"
# - name: Upload artifacts
# if: always()
# uses: actions/upload-artifact@v2
# with:
# name: Parse NuGet Package
# path: '**/*.nupkg'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true