This commit is contained in:
Yashwanth Anantharaju 2019-08-29 15:54:33 -04:00 коммит произвёл GitHub
Родитель 35b186c965
Коммит 4bf1642f55
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 33 добавлений и 0 удалений

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

@ -0,0 +1,33 @@
name: Run analysis
on:
push:
branches:
- automation/run/*
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: "run.ipynb"
params: "params.json"
poll: true
- uses: actions/upload-artifact@master
if: always()
with:
name: output
path: ${{ RUNNER.temp }}/nb-runner
env:
RUNNER: ${{ toJson(runner) }}