Files
speckle-sharp-sdk/.github/workflows/ci.yml
T
Adam Hathcock 46c3f9d1ac update codecov to be less intrusive (#15)
* update codecov to be less intrusive

* fix codecov yaml

* add coverage exclusion
2024-07-09 12:52:53 +02:00

31 lines
664 B
YAML

name: .NET CI Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x.x
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
- name: 🔫 Build All
run: ./build.sh
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
files: tests/**/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}