Skip to content

add toml as an install dependency to setup.py #32

add toml as an install dependency to setup.py

add toml as an install dependency to setup.py #32

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v2
- name: set up python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install toml
- name: lint and test
run: |
pip install -q flake8
flake8
python setup.py install
q2lint