Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/AlbatovK/PyChat
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbatovK committed Mar 9, 2022
2 parents 71db0dd + 297e0c2 commit a32c4d5
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: [push]

jobs:

build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build with Pyinstaller
run: |
pyinstaller main.py
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# PyChat
[![Android CI](https://github.com/AlbatovK/PyChat/actions/workflows/main.yml/badge.svg)](https://github.com/AlbatovK/PyChat/actions/workflows/main.yml)
[![codebeat badge](https://codebeat.co/badges/fbedf083-82c3-4553-bee3-23c53c7f6260)](https://codebeat.co/projects/github-com-albatovk-pychat-master)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
numpy==1.21.4
altgraph==0.17.2
certifi==2021.10.8
charset-normalizer==2.0.8
Expand All @@ -10,7 +11,6 @@ httplib2==0.20.2
idna==3.3
Inject==4.3.1
jws==0.1.3
numpy==1.21.4
oauth2client==3.0.0
pefile==2021.9.3
Pillow==8.4.0
Expand Down

0 comments on commit a32c4d5

Please sign in to comment.