Allow for the specification of auth scopes for google compute engine … #584
  
    
      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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v2 | |
| - name: Setup Conda Environment | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| miniconda-version: "latest" | |
| python-version: ${{ matrix.python-version }} | |
| environment-file: ci/environment-${{ matrix.python-version }}.yml | |
| activate-environment: dask-cloudprovider-test | |
| auto-activate-base: false | |
| - name: Install | |
| shell: bash -l {0} | |
| run: pip install -e .[all] | |
| - name: Run tests | |
| shell: bash -l {0} | |
| run: py.test dask_cloudprovider | |
| lint: | |
| name: "pre-commit hooks" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v5 | |
| - uses: pre-commit/action@v3.0.1 | |
| imports: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v2 | |
| - name: Setup Conda Environment | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| miniconda-version: "latest" | |
| python-version: "3.12" | |
| - name: Run import tests | |
| shell: bash -l {0} | |
| run: source ci/scripts/test_imports.sh |