Skip to content

Merge branch 'master' into refactor #21

Merge branch 'master' into refactor

Merge branch 'master' into refactor #21

Workflow file for this run

name: VFXNaming CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
environment:
name: coverage
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 }}