Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
president-xd authored Aug 21, 2024
1 parent b98717f commit 8535044
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 8535044

Please sign in to comment.