Skip to content

Merge pull request #122 from fplll/cython-3 #203

Merge pull request #122 from fplll/cython-3

Merge pull request #122 from fplll/cython-3 #203

Workflow file for this run

name: Bootstrap
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0' # weekly
env:
JOBS: 2
DEPS: libgmp-dev libmpfr-dev libqd-dev libtool autoconf python3-pip python3-dev python3-flake8
jobs:
python3:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Check out
uses: actions/checkout@v2
- name: Install prerequisites
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install $DEPS
pip install virtualenv
- name: Bootstrap
run: ./bootstrap.sh
- name: Test
run: source ./activate && python -m pytest