Skip to content

📝 Add docstrings to feat/mk1 (#12) #27

📝 Add docstrings to feat/mk1 (#12)

📝 Add docstrings to feat/mk1 (#12) #27

Workflow file for this run

name: Run Build Tests
on:
push:
branches:
- master
- dev
pull_request:
branches:
- dev
paths-ignore:
- 'version.py'
- 'test/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'readme.md'
- 'scripts/**'
workflow_dispatch:
jobs:
build_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: [3.9, "3.10", "3.11"]

Check failure on line 33 in .github/workflows/build_tests.yml

View workflow run for this annotation

GitHub Actions / Run Build Tests

Invalid workflow file

The workflow is not valid. .github/workflows/build_tests.yml (Line: 33, Col: 27): A sequence was not expected
- name: Install Build Tools
run: |
python -m pip install build wheel
- name: Build Distribution Packages (bdist_wheel)
run: |
python setup.py bdist_wheel
- name: Install package
run: |
pip install .