Skip to content

MIT license txt file added #16

MIT license txt file added

MIT license txt file added #16

name: Python Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Lint
run: |
pylama pyssp --verbose
- name: Test
run: |
pytest