Avoid copying files with same name prefix when copying folder #549
Workflow file for this run
This file contains 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, workflow_dispatch] | |
defaults: | |
run: | |
shell: bash -l -eo pipefail {0} | |
jobs: | |
test: | |
name: Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Setup Conda Environment | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
cache-downloads: true | |
environment-file: environment_gcsfs.yaml | |
environment-name: gcsfs_test | |
extra-specs: | | |
python=${{ matrix.python-version }} | |
- name: Conda info | |
run: | | |
conda list | |
conda --version | |
- name: Install libfuse | |
run: (sudo apt-get install -y fuse || echo "Error installing fuse.") | |
- name: Run tests | |
run: | | |
export GOOGLE_APPLICATION_CREDENTIALS=$(pwd)/gcsfs/tests/fake-secret.json | |
pytest -vv \ | |
--log-format="%(asctime)s %(levelname)s %(message)s" \ | |
--log-date-format="%H:%M:%S" \ | |
gcsfs/ | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- uses: pre-commit/[email protected] |