Skip to content

Update PythonRpcServer dockerfile and requirements #718

Update PythonRpcServer dockerfile and requirements

Update PythonRpcServer dockerfile and requirements #718

Workflow file for this run

name: CI
on:
push:
branches:
- main
- staging
- expt
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel
- uses: actions/cache@v2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Compile application
run: |
dotnet build ClassTranscribeServer.sln --configuration Release
- name: Run unit tests
run: |
dotnet test UnitTests --configuration Release -v n