diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-29 14:24:41 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-29 14:24:41 +0300 |
commit | c734525c97dd00cd731bf083ad57db3f584fd7b0 (patch) | |
tree | e095306169c4d52dede6ab75c2db9b31acdf6ab1 /.gitea | |
parent | f07195dd7d4c7cdb96801c0d57f61ff2ac468a1b (diff) |
Add Action
Diffstat (limited to '.gitea')
-rw-r--r-- | .gitea/workflows/test.yaml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..07be733 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,31 @@ +name: Test ML model + +on: + push: + branches: + - "master" + paths-ignore: + - "README.md" + 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' + - name: Restore packages + run: dotnet restore + - name: Build + run: dotnet build + - name: Test + run: dotnet test + - name: Deploy model + run: cp Models/model.zip /output |