Skip to content

Revert "Is it related to remote?" #10

Revert "Is it related to remote?"

Revert "Is it related to remote?" #10

Workflow file for this run

name: CI
on:
- push
- workflow_dispatch
jobs:
Build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install CodeCov
run: dotnet tool install -g codecov.tool
- name: Build
run: dotnet build
- name: Pack
run: dotnet pack --property:PackageOutputPath=../../pkgs
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: pkgs
path: |
./pkgs/*.nupkg
./pkgs/*.snupkg
- name: Publish Coverage
uses: codecov/codecov-action@v4
with:
files: '**/*/Coverage.*.xml'