Skip to content

rust: add bootstrap sequence #220

rust: add bootstrap sequence

rust: add bootstrap sequence #220

Workflow file for this run

name: Python its-info
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
cd python/its-info
python -m pip install --upgrade pip
pip install black wheel
- name: Run black
run: |
cd python/its-info
black --diff --check .
- name: Run package creation
run: |
cd python/its-info
python setup.py bdist_wheel