Skip to content

Bump TimeWarp.Nuru from 3.0.0-beta.56 to 3.0.0-beta.57 #264

Bump TimeWarp.Nuru from 3.0.0-beta.56 to 3.0.0-beta.57

Bump TimeWarp.Nuru from 3.0.0-beta.56 to 3.0.0-beta.57 #264

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: 1
DOTNET_VERSION: "10.0.100-rc.2.25502.107"
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Setup .NET 10
id: setup
continue-on-error: true
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
# Runs a single command using the runners shell
- name: Cake Action
uses: cake-build/cake-action@v3
with:
target: tests
- name: Publish coverage report to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ github.workspace }}/BlogHelper9000.Tests/TestResults/coverage.info