Skip to content

Commit

Permalink
Merge pull request #6 from BuczynskiRafal/workflows
Browse files Browse the repository at this point in the history
remove build by GA
  • Loading branch information
BuczynskiRafal authored Sep 19, 2024
2 parents 7907f72 + 5c832ba commit c88ab72
Showing 1 changed file with 20 additions and 46 deletions.
66 changes: 20 additions & 46 deletions .github/workflows/rcg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,55 +4,29 @@ on: [push, pull_request]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: ['3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
python -c "import os; os.path.exists('requirements.txt') and os.system('pip install -r requirements.txt')"
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest rcg/ --cov=rcg
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
python-version: ["3.8", "3.9", "3.10"]

build_wheels:
needs: build
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/* --skip-existing
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
python -c "import os; os.path.exists('requirements.txt') and os.system('pip install -r requirements.txt')"
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest rcg/ --cov=rcg
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3

0 comments on commit c88ab72

Please sign in to comment.