Skip to content

Bump codecov/codecov-action from 4.1.1 to 4.4.1 #240

Bump codecov/codecov-action from 4.1.1 to 4.4.1

Bump codecov/codecov-action from 4.1.1 to 4.4.1 #240

Workflow file for this run

# name: Build Master
on:
push:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest --cov-report xml --cov=cvapipe_analysis cvapipe_analysis/tests/
- name: Upload codecov
uses: codecov/codecov-action@v1
# lint:
# runs-on: ubuntu-latest
steps:

Check failure on line 35 in .github/workflows/build-master.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-master.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Lint with flake8
run: |
flake8 cvapipe_analysis --count --verbose --show-source --statistics
- name: Check with black
run: |
black --check cvapipe_analysis
publish:
if: "contains(github.event.head_commit.message, 'Bump version')"
needs: [test, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build Package
run: |
python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}