Skip to content

json !ios

json !ios #11

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install ruff pyright
- name: Lint
run: |
ruff check scripts
pyright scripts/*.py
macos:
if: "!contains(github.event.head_commit.message, '!macos')"
needs: lint
uses: ./.github/workflows/macos.yml
ios:
if: "!contains(github.event.head_commit.message, '!ios')"
needs: lint
uses: ./.github/workflows/ios.yml
js:
if: "!contains(github.event.head_commit.message, '!js')"
needs: lint
uses: ./.github/workflows/js.yml