Retire rpi2 bb jetson #114
Workflow file for this run
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: .NET Codestyle | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'binding/dotnet/**/*.cs' | |
- 'demo/dotnet/**/*.cs' | |
- 'demo/dotnet-vui/**/*.cs' | |
- '.github/workflows/dotnet-codestyle.yml' | |
pull_request: | |
branches: [ master, 'v[0-9]+.[0-9]+' ] | |
paths: | |
- 'binding/dotnet/**/*.cs' | |
- 'demo/dotnet/**/*.cs' | |
- 'demo/dotnet-vui/**/*.cs' | |
- '.github/workflows/dotnet-codestyle.yml' | |
jobs: | |
check-dotnet-codestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up .NET 6.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Run Binding Codestyle | |
run: dotnet format --verify-no-changes | |
working-directory: binding/dotnet | |
# ************** REMOVE AFTER RELEASE ******************** | |
- name: Pack .NET SDK | |
run: dotnet pack -c Release | |
working-directory: binding/dotnet | |
- name: Add local NuGet package file | |
continue-on-error: true | |
run: dotnet add package -s ../../../binding/dotnet/Porcupine/bin/Release Porcupine | |
working-directory: demo/dotnet/PorcupineDemo | |
# ******************************************************** | |
- name: Run Demo Codestyle | |
run: dotnet format --verify-no-changes | |
working-directory: demo/dotnet | |
- name: Run Demo-vui Codestyle | |
run: dotnet format --verify-no-changes | |
working-directory: demo/dotnet-vui |