feat: add nodejs/npm into goose image #168
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: Pytests | |
| on: | |
| pull_request: | |
| push: | |
| permissions: | |
| contents: write | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install all dependencies | |
| run: uv sync --frozen --all-extras --all-groups | |
| - name: Build required images | |
| run: | | |
| uv tool install --with-editable . . | |
| cubbi image build goose | |
| cubbi image build aider | |
| - name: Tests | |
| run: | | |
| uv run --frozen -m pytest -v |