Skip to content

Surface anime images directly from their third-party hosts. #708

Surface anime images directly from their third-party hosts.

Surface anime images directly from their third-party hosts. #708

Workflow file for this run

on: [push]
jobs:
test:
name: "run unit tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- run: poetry run npm run-script test
migrations:
name: "check django migrations"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry run npm run-script check-migrations
docs:
name: "ensure the docs build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- working-directory: docs
run: poetry run make html
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry run npm run-script lint-black
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry run npm run-script lint-flake8
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry run npm run-script lint-mypy
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run-script lint-js