From 5c832ba97add7b9e3977bfbdba2f7f6b06741be2 Mon Sep 17 00:00:00 2001 From: BuczynskiRafal Date: Thu, 19 Sep 2024 11:39:15 +0200 Subject: [PATCH] remove build by GA --- .github/workflows/rcg.yaml | 66 ++++++++++++-------------------------- 1 file changed, 20 insertions(+), 46 deletions(-) diff --git a/.github/workflows/rcg.yaml b/.github/workflows/rcg.yaml index 4e6cc36..51bef19 100644 --- a/.github/workflows/rcg.yaml +++ b/.github/workflows/rcg.yaml @@ -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