-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'chloeLeeDOper' into chloeLeeDOper
- Loading branch information
Showing
46 changed files
with
1,727 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
changelog: | ||
exclude: | ||
authors: [dependabot, github-actions, pre-commit-ci] | ||
categories: | ||
- title: 🎉 New Features | ||
labels: [feature] | ||
- title: 🐛 Bug Fixes | ||
labels: [fix] | ||
- title: 🛠 Enhancements | ||
labels: [enhancement, DX, UX] | ||
- title: 📖 Documentation | ||
labels: [docs] | ||
- title: 🧹 House-Keeping | ||
labels: [housekeeping] | ||
- title: 🚀 Performance | ||
labels: [performance] | ||
- title: 💡 Refactoring | ||
labels: [refactor] | ||
- title: 🧪 Tests | ||
labels: [tests] | ||
- title: 💥 Breaking Changes | ||
labels: [breaking] | ||
- title: 🔒 Security Fixes | ||
labels: [security] | ||
- title: 🏥 Package Health | ||
labels: [pkg] | ||
- title: 🤷♂️ Other Changes | ||
labels: ["*"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
name: SMACT CI | ||
|
||
on: [push] | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
qa: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: pre-commit/[email protected] | ||
|
||
test: | ||
needs: qa | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.8","3.9","3.10"] | ||
python-version: ["3.8","3.9","3.10","3.11"] | ||
os: [ubuntu-latest,macos-latest,windows-latest] | ||
|
||
runs-on: ${{matrix.os}} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel setuptools | ||
pip install -r requirements.txt | ||
pip install -e . | ||
pip install pytest-cov | ||
- name: Run tests and collect coverage | ||
run: python -m pytest --cov=smact --cov-report=xml -v | ||
|
@@ -37,9 +41,9 @@ jobs: | |
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
#files: ./coverage.xml | ||
fail_ci_if_error: true | ||
fail_ci_if_error: False | ||
env_vars: OS,PYTHON | ||
verbose: true | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Defining the exact version will make sure things don't break | ||
sphinx==5.3.0 | ||
sphinx_rtd_theme==1.1.1 | ||
readthedocs-sphinx-search==0.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
alabaster==0.7.13 | ||
# via sphinx | ||
babel==2.12.1 | ||
# via sphinx | ||
certifi==2023.7.22 | ||
# via requests | ||
charset-normalizer==3.2.0 | ||
# via requests | ||
docutils==0.17.1 | ||
# via | ||
# sphinx | ||
# sphinx-rtd-theme | ||
idna==3.4 | ||
# via requests | ||
imagesize==1.4.1 | ||
# via sphinx | ||
jinja2==3.1.2 | ||
# via sphinx | ||
markupsafe==2.1.3 | ||
# via jinja2 | ||
packaging==23.1 | ||
# via sphinx | ||
pygments==2.16.1 | ||
# via sphinx | ||
readthedocs-sphinx-search==0.1.1 | ||
# via -r requirements.in | ||
requests==2.31.0 | ||
# via sphinx | ||
snowballstemmer==2.2.0 | ||
# via sphinx | ||
sphinx==5.3.0 | ||
# via | ||
# -r requirements.in | ||
# sphinx-rtd-theme | ||
sphinx-rtd-theme==1.1.1 | ||
# via -r requirements.in | ||
sphinxcontrib-applehelp==1.0.4 | ||
# via sphinx | ||
sphinxcontrib-devhelp==1.0.2 | ||
# via sphinx | ||
sphinxcontrib-htmlhelp==2.0.1 | ||
# via sphinx | ||
sphinxcontrib-jsmath==1.0.1 | ||
# via sphinx | ||
sphinxcontrib-qthelp==1.0.3 | ||
# via sphinx | ||
sphinxcontrib-serializinghtml==1.1.5 | ||
# via sphinx | ||
urllib3==2.0.7 | ||
# via requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.