blog post: announcing the aep-2026 release #724
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: lint | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| container: python:3.12 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: install node. | |
| run: | | |
| apt-get update | |
| apt-get install -y nodejs npm | |
| - name: install dependencies. | |
| run: make install | |
| - name: run check command. | |
| run: make check |