name: ci on: workflow_call: pull_request: branches: [main] push: branches: [main] jobs: changes: runs-on: ubuntu-latest outputs: lua: ${{ steps.changes.outputs.lua }} python: ${{ steps.changes.outputs.python }} steps: - uses: actions/checkout@v4 - uses: dorny/paths-filter@v3 id: changes with: filters: | lua: - 'lua/**' - 'spec/**' - 'plugin/**' - 'after/**' - 'ftdetect/**' - '*.lua' - '.luarc.json' - 'stylua.toml' - 'selene.toml' python: - 'scripts/**' - 'scrapers/**' - 'tests/**' - 'pyproject.toml' - 'uv.lock' lua-format: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: - uses: actions/checkout@v4 - uses: JohnnyMorganz/stylua-action@v4 with: token: ${{ secrets.GITHUB_TOKEN }} version: 2.1.0 args: --check . lua-lint: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: - uses: actions/checkout@v4 - uses: NTBBloodbath/selene-action@v1.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} args: --display-style quiet . lua-typecheck: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: - uses: actions/checkout@v4 - uses: mrcjkb/lua-typecheck-action@v0 with: checklevel: Warning directories: lua configpath: .luarc.json python-format: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.python == 'true' }} steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v4 - run: uv tool install ruff - run: ruff format --check . python-lint: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.python == 'true' }} steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v4 - run: uv tool install ruff - run: ruff check . python-typecheck: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.python == 'true' }} steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v4 - run: uv sync --dev - run: uvx ty check . python-test: runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.python == 'true' }} steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v4 - run: uv sync --dev - run: uv run camoufox fetch - run: uv run pytest tests/ -v