Skip to content

Commit

Permalink
feat/intial-v unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
hminaee-tc committed Jun 13, 2024
1 parent c69171b commit f590033
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish Python 🐍 distributions 📦 to PyPI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11

- name: Run tests
run: python3 -m unittest tests/test_main.py

0 comments on commit f590033

Please sign in to comment.