Skip to content

Commit 0d9d901

Browse files
authored
Initial release (#1)
1 parent a338566 commit 0d9d901

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+11397
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Test & Build
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
8+
jobs:
9+
build_and_test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout Repository
14+
uses: actions/checkout@v2
15+
16+
- name: Setup Python
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: '3.10'
20+
21+
- name: Install Dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install setuptools wheel
25+
26+
- name: Install Pytest
27+
run: |
28+
pip install pytest
29+
30+
- name: Build Package
31+
run: |
32+
python setup.py sdist
33+
34+
- name: Install Package
35+
run: |
36+
pip install dist/*
37+
38+
- name: Run Tests
39+
run: |
40+
pytest tests -vv -rEPW -o pytest_collection_order=alphabetical --cache-clear --color=yes

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Version History
2+
3+
- 0.1.0: Initial Release (latest)

0 commit comments

Comments
 (0)