Update Instagram URL parsing to support profile prefixed posts #260
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| - name: Install the project | |
| run: uv sync --locked --all-extras --dev | |
| - name: Ruff check | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: "check --ignore=E501" | |
| - name: Ruff format | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: "format --check" | |
| - name: isort check | |
| uses: isort/isort-action@v1 | |
| - name: REUSE Compliance Check | |
| uses: fsfe/reuse-action@v5 | |
| - name: Minimize uv cache | |
| run: uv cache prune --ci |