Bump codecov/codecov-action from 4.3.0 to 4.5.0 #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test and deploy | |
on: | |
push: | |
branches: [ main] | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
runs-on: "${{matrix.os}}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install additional dependencies | |
run: | | |
python -m pip install --upgrade pip cryptography | |
pip install wheel | |
- name: Install CORDA | |
run: pip install -e . | |
- name: install solvers | |
if: matrix.python-version != '3.11' | |
run: pip install cplex gurobipy | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=89 --statistics | |
- name: Test with pytest | |
run: | | |
pip install pytest pytest-cov pytest-benchmark | |
pytest --cov=corda --cov-report=xml | |
- name: Upload to codecov | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.10 | |
uses: codecov/[email protected] | |
release: | |
needs: test | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build package | |
run: python setup.py sdist bdist_wheel | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: python-packages | |
path: dist/* | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifacts: 'dist/*' | |
body: | | |
Please see https://github.com/resendislab/corda/blob/master/NEWS.md for the full release notes. | |
draft: false | |
prerelease: false |