Skip to content

BamBam

BamBam #356

Workflow file for this run

name: BamBam
on: [push, pull_request]
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7", "3.5"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with flake8
run: |
flake8 . --show-source --statistics
- name: Lint with autopep8
run: |
autopep8 -d *.py | awk 'BEGIN{had_data=0}{print;had_data=1}END{exit had_data}'
- name: Smoke test import
run: |
python -c 'import bambam'