-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added CI stuff modeled after diffsims
- Loading branch information
Showing
3 changed files
with
106 additions
and
2 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,59 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-and-test: | ||
name: ${{ matrix.os }}/py${{ matrix.python-version }}/pip | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
env: | ||
MPLBACKEND: agg | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
python-version: [3.7, 3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Display versions of Python and Pip | ||
run: python -V; pip -V | ||
- name: Setup conda | ||
uses: s-weigans/setup-conda@v1 | ||
with: | ||
update-conda:true | ||
conda-channels: conda-forge | ||
- name: Check conda version | ||
run: conda --version | ||
- name: Install depedencies and package | ||
shell: bash | ||
run: pip install -U -e .; conda install match-series | ||
- name: Run tests | ||
run: pytest --cov=pymatchseries --pyargs pymatchseries | ||
- name: Generate line coverage | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: coverage report --show-missing | ||
- name: Upload coverage to Coveralls | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: AndreMiras/coveralls-python-action@develop | ||
with: | ||
parallel: true | ||
|
||
coveralls-finish: | ||
needs: build-with-pip | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Coveralls finished | ||
uses: AndreMiras/coveralls-python-action@develop | ||
with: | ||
parallel-finished: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflows will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* |
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