Skip to content

3.10.12

3.10.12 #9

name: Test & Train Model
on:
push:
workflow_dispatch:
# on:
# pull_request:
# paths-ignore:
# - "README.md"
# - "Makefile"
# - "Dockerfile"
jobs:
training-testing:
name: Training and Testing
runs-on: ubuntu-latest
# needs: [lint-testing, type-testing]
steps:
- uses: actions/checkout@v1
- id: files
uses: jitterbit/get-changed-files@v1
- name: set_training
if: |
contains( steps.files.outputs.all, 'data/' )
|| contains( steps.files.outputs.all, 'config.yml' )
run: echo "RUN_TRAINING=true" >> $GITHUB_ENV
- name: Rasa Train and Test GitHub Action
# if: env.RUN_TRAINING == 'true'
uses: RasaHQ/rasa-train-test-gha@main
with:
rasa_image: 'rasa/rasa-pro:3.10.12'
# rasa_version: '3.10.12'
test_type: nlu
data_validate: false
cross_validation: false
publish_summary: false
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload model
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@main
with:
name: model
path: models