Skip to content

Fixed typo in README CI badge #2

Fixed typo in README CI badge

Fixed typo in README CI badge #2

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
notebooks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install wheel setuptools
pip install black==22.3.0 isort==5.10.1 flake8==4.0.1
- name: Launch notebook
uses: yaananth/run-notebook@v2
env:
RUNNER: ${{ toJson(runner) }}
with:
notebook: "apps/breast_cancer_incidence_rate.ipynb"
isReport: False
poll: True
- uses: actions/upload-artifact@v3
if: always()
with:
name: output
path: ${{ RUNNER.temp }}/nb-runner
env:
RUNNER: ${{ toJson(runner) }}