2023-12-29 14:24:41 +03:00
|
|
|
name: Test ML model
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
volumes:
|
|
|
|
- rhsolutions-model:/output
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup .NET 7.0
|
|
|
|
uses: actions/setup-dotnet@v3
|
|
|
|
with:
|
|
|
|
dotnet-version: '7.0'
|
2024-01-17 12:06:57 +03:00
|
|
|
- name: Build & Test
|
2023-12-29 14:24:41 +03:00
|
|
|
run: dotnet test
|
|
|
|
- name: Deploy model
|
|
|
|
run: cp Models/model.zip /output
|