Skip to content
This repository was archived by the owner on Jul 15, 2026. It is now read-only.

Migrate from python-for-android to Chaquopy #463

Migrate from python-for-android to Chaquopy

Migrate from python-for-android to Chaquopy #463

Workflow file for this run

name: Linting
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
pre_job:
name: Path match check
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5.3.1
with:
github_token: ${{ github.token }}
paths_ignore: '["**.po", "**.json"]'
linting:
name: All file linting
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.10"
cache: 'pip'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- uses: pre-commit/action@v3.0.1