Skip to content

Commit

Permalink
Version 5.0.0 - Going live
Browse files Browse the repository at this point in the history
- Migrated from internal repo
- Adding Unittests for fun! :D
  • Loading branch information
CCP-Zeulix committed Apr 15, 2024
1 parent 24cc049 commit 2eab1c9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Unit Tests

on: [push, pull_request]

jobs:
unit-tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies on Python ${{ matrix.python-version }}
run: |
python -m pip install --upgrade pip
pip install -r requirements-unittesting.txt
pip uninstall -y protoplasm
- name: Run tests on Python ${{ matrix.python-version }}
run: |
python -m unittest discover -v -f ./tests
2 changes: 1 addition & 1 deletion requirements-unittesting.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
neobuilder >=5, <6
neobuilder == 5.0.0-beta.1

0 comments on commit 2eab1c9

Please sign in to comment.