--- name: CI "on": push: pull_request: types: - opened - synchronize - reopened jobs: build: runs-on: ubuntu-latest strategy: matrix: os: [ubuntu-latest] python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4.0.3 with: node-version: '18' - name: Install the latest version of uv uses: astral-sh/setup-uv@v3 with: enable-cache: true - run: uv sync - name: Setup pnpm uses: pnpm/action-setup@v4.0.0 with: version: 8 run_install: false - name: Get pnpm store directory shell: bash run: | echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ env.STORE_PATH }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies run: pnpm install - name: Install Task uses: arduino/setup-task@v2 with: version: 3.x - run: uv run task -p all_for_ci