Skip to content

Update Example_RTModel_Walkthrough_colab to fix dlomix version #60

Update Example_RTModel_Walkthrough_colab to fix dlomix version

Update Example_RTModel_Walkthrough_colab to fix dlomix version #60

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
make install-dev
- name: Format with black
run: |
make format
- name: Test with pytest
run: |
make test