Skip to content

Commit

Permalink
Create Workflow for Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
moonjck authored Jan 7, 2025
1 parent 69e41b9 commit 6f3a16e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Eyeon Unit Testing
on: [push]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/check@v4
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Virtual Environment Setup
run: |
python3 -m venv .venv
- name: Install Dependencies
run: |
source .venv/bin/activate
pip install dist/eyeon-1.0-py3-none-any.whl
echo "Packages installed"

0 comments on commit 6f3a16e

Please sign in to comment.