From 8535044d31abddf466c3c2cb462cee2ec3cce765 Mon Sep 17 00:00:00 2001 From: Mohsin Mukhtiar Lashari <160683327+president-xd@users.noreply.github.com> Date: Wed, 21 Aug 2024 05:05:22 +0500 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2ee828c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,47 @@ +name: Continuous Integration + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + + - name: Install dependencies + run: | + pip install -r Cryptix/requirements.txt + + - name: Lint code + run: | + flake8 Cryptix + + - name: Run tests + run: | + python -m unittest discover -s Cryptix/tests + + - name: Code coverage + uses: codecov/codecov-action@v3 + with: + file: ./coverage.xml + + - name: Build package + run: | + python setup.py sdist bdist_wheel + + - name: Upload Python Package + uses: pypa/gh-action-pypi-publish@v2 + with: + user: ${{ secrets.pypi_username }} + password: ${{ secrets.pypi_token }}