Skip to content

Commit

Permalink
Merge pull request #18 from tandav/master
Browse files Browse the repository at this point in the history
Add github actions with automatic publishing to pypi
  • Loading branch information
r9y9 authored Feb 12, 2023
2 parents 02b1462 + f435e48 commit c37083a
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: ci

on:
push:
branches:
- master
tags:
- 'v*'
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}

- name: install dependencies
run: |
git submodule update --init --recursive
pip install .
pip install -r .requirements-dev.txt
- name: test
run: pytest


build-and-publish-to-pypi:
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags')"
needs: test
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
git submodule update --init --recursive
python -m pip install --upgrade setuptools build twine
- name: Build a source tarball and wheel
run: python -m build .

- name:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: python -m twine upload dist/*
2 changes: 2 additions & 0 deletions .requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pytest
scipy

0 comments on commit c37083a

Please sign in to comment.