Skip to content

Replace gsutil by gcloud storage #2

Replace gsutil by gcloud storage

Replace gsutil by gcloud storage #2

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
SETUPTOOLS_SCM_PRETEND_VERSION=0.0.1 pip install .[test]
env:
CI: false
- name: Test with pytest
run: |
pytest
env:
CI: true