Accuracy Report #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Accuracy Report | |
on: | |
workflow_dispatch: | |
inputs: | |
lingua: | |
type: boolean | |
default: true | |
description: "include Lingua library?" | |
language_detection: | |
type: boolean | |
default: true | |
description: "include LanguageDetection library?" | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build Accuracy Report | |
run: ./build.sh report ${{ inputs.lingua && '--implementation Lingua' || '' }} ${{ inputs.language_detection && '--implementation LanguageDetection' || '' }} | |
- name: Write Summary | |
run: | | |
cat accuracy-reports/report.md >> $GITHUB_STEP_SUMMARY | |