Skip to content

Remove local versioning #13

Remove local versioning

Remove local versioning #13

Workflow file for this run

name: Installing
on:
push:
branches:
- main
pull_request:
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test installation
run: |
python -m pip install --upgrade pip
pip install .
python -c "import sqfa"