Skip to content

Add dotnet implementation of the htmlformatter #16

Add dotnet implementation of the htmlformatter

Add dotnet implementation of the htmlformatter #16

Workflow file for this run

name: test-dotnet
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
workflow_call:
jobs:
test-dotnet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/prepare
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- run: |
pwd
ls -Al
tree -L 3
cat /home/runner/work/html-formatter/html-formatter/dotnet/HtmlFormatter/Cucumber.HtmlFormatter.csproj
cat /home/runner/work/html-formatter/html-formatter/dotnet/HtmlFormatterTest/Cucumber.HtmlFormatterTest.csproj
working-directory: dotnet
- name: run tests
run: dotnet test
working-directory: dotnet