Skip to content

Mark tests which depend on ECS as expected fail; separate integration and unit tests #488

Mark tests which depend on ECS as expected fail; separate integration and unit tests

Mark tests which depend on ECS as expected fail; separate integration and unit tests #488

name: Run linters on PRs
on:
pull_request:
branches:
- development
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Use the Ruff linter to annotate code style / best-practice issues
# NOTE: More config provided in pyproject.toml
- name: Lint and annotate PR
uses: chartboost/ruff-action@v1
with:
args: "check . --output-format github"