Skip to content

Commit

Permalink
Add github action files
Browse files Browse the repository at this point in the history
  • Loading branch information
houshmand-2005 committed May 20, 2024
1 parent 2da1ed0 commit 87d0f21
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build and Upload V2IpLimit

on:
push:
paths:
- "v2iplimit.py"

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Check-out repository
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: |
**/requirements*.txt
- name: Install your Dependencies
run: |
pip install -r requirements.txt
- name: Build Executable with Nuitka
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: v2iplimit.py
standalone: true
onefile: true
follow-imports: true
include-plugin-directory: "utils"
include-package: "websockets,logging"
python-flag: "-OO"

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_amd64_build
path: |
build/*.bin
build/*.exe
23 changes: 23 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analyzing the code with pylint
run: |
pylint $(git ls-files '*.py')

0 comments on commit 87d0f21

Please sign in to comment.