Skip to content

Commit

Permalink
Update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jis4nx committed Sep 23, 2023
1 parent cabcb20 commit ffa0489
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application
name: Python Package

on:
push:
Expand All @@ -16,15 +16,15 @@ jobs:
steps:
- uses: actions/checkout@main

- name: Initialize Python 3.9
- name: Initialize Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install flake8 wheel
pip install --upgrade setuptools
Expand All @@ -33,8 +33,8 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build binary wheel and a source tarball
- name: Build & Install
run: |
python setup.py bdist_wheel sdist
python setup.py sdist bdist_wheel
pip install .

0 comments on commit ffa0489

Please sign in to comment.