Skip to content

Stale maximimum choices #181

Stale maximimum choices

Stale maximimum choices #181

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: ~
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -yqq texlive-latex-base gettext texlive-pictures texlive-latex-extra
sudo apt-get install -yqq texlive-xetex libblas-dev liblapack-dev libatlas-base-dev gfortran
pip3 install -e ".[dev]"
- name: Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python3 manage.py test
coverage run --source=survey --omit=survey/migrations/* ./manage.py test
coverage html
coveralls debug --service=github
- name: pylint
run: |
pre-commit run pylint --all-files