Skip to content

Add lcov report

Add lcov report #19

Workflow file for this run

name: VFXNaming CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
environment:
name: coverage
github-token: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 11 in .github/workflows/ci_vfxnaming.yml

View workflow run for this annotation

GitHub Actions / VFXNaming CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci_vfxnaming.yml (Line: 11, Col: 5): Unexpected value 'github-token'
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pipenv'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pipenv tox
pipenv sync --dev
- name: Lint with Ruff
run: |
pipenv run ruff check --output-format=github .
continue-on-error: true
- name: Run tests with tox
run: |
tox -e py310ci
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}