Skip to content

release: v0.0.1a15.dev20240405 #817

release: v0.0.1a15.dev20240405

release: v0.0.1a15.dev20240405 #817

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: [main, development]
pull_request:
branches: [main, development, next-release]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# 3.8 Shared hosting
# 3.9 Ubi minimal
# 3.12 Last release
python-version: [3.8, 3.9, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r test.txt
- name: Run lint file
run: |
rm -rf build
python -m build
python -m twine check dist/*
bash .lint.sh
- name: Test with SQLite
run: |
CI=True pytest -v --exitfirst --cov=now_lms --slow=True
- name: Codecov
uses: codecov/codecov-action@v1