Skip to content

Update Docs

Update Docs #64

Workflow file for this run

name: Build Python Wheel
on: [push, pull_request]
jobs:
build_wheel:
name: Build Wheel
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # specify the Python version you want to use
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build wheel
run: python setup.py bdist_wheel
- name: Upload wheel
uses: actions/upload-artifact@v2
with:
name: wheel
path: dist
- name: Install tool
run: find dist/ -name '*.whl' -type f | xargs pip install
- name: Run tool
run: fafnir --help