Add R2 storage backend #46
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: Run Pytest | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' # Specify a Node.js version | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Setup tests | |
| run: pnpm run setup-test | |
| - name: Run tests | |
| run: pnpm run test |