Skip to content

Python package

Python package #503

Workflow file for this run

name: Python package
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: test pip install
run: |
pip install .
- name: lint
run: |
pip install -r dev-requirements.txt
make lint
- name: test sdist
run: |
mkdir /tmp/test_sdist
python setup.py sdist -d /tmp/test_sdist
cd /tmp/test_sdist
pip install enochecker_test-*.tar.gz