Skip to content

Commit 4b8cae3

Browse files
committed
github actions setup
1 parent 58ef2c7 commit 4b8cae3

File tree

3 files changed

+61
-1
lines changed

3 files changed

+61
-1
lines changed

.github/workflows/python-package.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Testing
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: ["3.10", "3.11"]
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install flake8 pytest
23+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24+
- name: Lint with flake8
25+
run: |
26+
# stop the build if there are Python syntax errors or undefined names
27+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
28+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
29+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
30+
- name: Test with pytest
31+
run: |
32+
pytest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release and Publish to PyPI
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: '3.11'
17+
18+
- name: Install dependencies
19+
run: pip install setuptools wheel twine build
20+
21+
- name: Build package
22+
run: python -m build
23+
24+
- name: Publish to PyPI
25+
uses: pypa/[email protected]
26+
with:
27+
user: __token__
28+
password: ${{ secrets.PYPI_API_TOKEN }}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "pyLump"
77
version = "0.1.0"
88
authors = [{name = "Luka Novak, Domen Gorjup, Janko Slavič", email = "[email protected]"}]
9-
maintainers = [{name = "Luka Novak, Domen Gorjup, Janko Slavič", email = "klemen.zaletelj@fs.uni-lj.si"}]
9+
maintainers = [{name = "Luka Novak, Domen Gorjup, Janko Slavič", email = "janko.slavic@fs.uni-lj.si"}]
1010
license = "MIT"
1111
description = "Multi Degree of Freedom (mass-spring-damper) Models."
1212
readme = "readme.rst"

0 commit comments

Comments
 (0)