Skip to content

libmozc

libmozc #18

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 35, Col: 17): Unrecognized named-value: 'env'. Located at position 1 within expression: env.MOZC_SHA .github/workflows/ci.yml (Line: 42, Col: 17): Unrecognized named-value: 'env'. Located at position 1 within expression: env.MOZC_SHA
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 }}