Skip to content

build: track test coverage via coveralls #31

build: track test coverage via coveralls

build: track test coverage via coveralls #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["master"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Add RobloxCS GitHub packages source to NuGet
run: dotnet nuget add source --store-password-in-clear-text -u roblox-csharp -p ${{ secrets.GITHUB_TOKEN }} -n rbxcs "https://nuget.pkg.github.com/roblox-csharp/index.json"
- name: Run tests
run: dotnet test --verbosity normal
- name: Report coverage
continue-on-error: true
uses: coverallsapp/github-action@v2.3.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}