This commit is contained in:
Yashwanth Anantharaju 2019-08-26 16:48:58 -04:00 коммит произвёл GitHub
Родитель c815b74227
Коммит 3bb127f6e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 32 добавлений и 0 удалений

32
.github/workflows/ja.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,32 @@
name: Jobagent analysis
on:
push:
branches:
- automation/ja/*
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- name: Install dependencies
run: |
python -m pip install matplotlib nimport azure-kusto-notebooks plotly
- uses: yaananth/run-notebook@v1
env:
RUNNER: ${{ toJson(runner) }}
SECRETS: ${{ toJson(secrets) }}
GITHUB: ${{ toJson(github) }}
with:
notebook: "ja.ipynb"
params: "params.json"
continue-on-error: true
- uses: actions/upload-artifact@master
with:
name: output
path: ${{ RUNNER.temp }}/nb-runner
env:
RUNNER: ${{ toJson(runner) }}