Skip to content

Commit

Permalink
Add install test, and version 3.7 of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
dherrera1911 committed Dec 11, 2024
1 parent 563b2c2 commit 1aa6c9a
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Installation

on:
push:
branches:
- main
pull_request:

jobs:
install:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

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"
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Check out repository
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ build-backend = "setuptools.build_meta"

[project.urls]
Repository = "https://github.com/dherrera1911/sqfa"
Source = "https://github.com/dherrera1911/sqfa"
Documentation = "https://sqfa.readthedocs.io/en/latest/"


[tool.pytest.ini_options]
Expand Down

0 comments on commit 1aa6c9a

Please sign in to comment.