libmozc #18
Workflow file for this run
This file contains 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: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
env: | ||
MOZC_SHA: ad0e97b8b8dcfd4c841a02c5d6a043fb5e741405 | ||
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 | ||
with: | ||
mozc_sha: ${{ env.MOZC_SHA }} | ||
Check failure on line 35 in .github/workflows/ci.yml GitHub Actions / ciInvalid workflow file
|
||
ios: | ||
if: "!contains(github.event.head_commit.message, '!ios')" | ||
needs: lint | ||
uses: ./.github/workflows/ios.yml | ||
with: | ||
mozc_sha: ${{ env.MOZC_SHA }} | ||
js: | ||
if: "!contains(github.event.head_commit.message, '!js')" | ||
needs: lint | ||
uses: ./.github/workflows/js.yml | ||
with: | ||
mozc_sha: ${{ env.MOZC_SHA }} |