Update lexicons fetched from 18d3114 committed 2026-05-12T18:28:00Z #640
Workflow file for this run
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: Codegen check | |
| on: [ pull_request ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| codegen_check: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest, macos-latest ] | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout repository. | |
| uses: actions/checkout@v4 | |
| - name: Set up Python. | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Setup Poetry. | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 2.2.1 | |
| - name: Install dependencies. | |
| run: poetry install --no-interaction | |
| - name: Run codegen. | |
| run: poetry run atproto gen all | |
| - name: Run docs gen. | |
| if: runner.os == 'Linux' | |
| run: | | |
| source $(poetry env info -p)/bin/activate | |
| make -s -C docs gen | |
| - name: Check working directory is clean. | |
| run: git diff --exit-code |