Skip to content

ci: use fetch-depth 0 to get tags for correct versioning #19

ci: use fetch-depth 0 to get tags for correct versioning

ci: use fetch-depth 0 to get tags for correct versioning #19

Workflow file for this run

name: uproot-main
on:
push:
branches: ['main']
paths-ignore: ['**.md', 'docs/**']
pull_request:
paths-ignore: ['**.md', 'docs/**']
workflow_dispatch:
concurrency:
group: 'uproot-main-${{ github.head_ref || github.run_id }}'
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: "3.10"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install and test
run: |
python3 -m pip install pip wheel -U
python3 -m pip install -q --no-cache-dir -e .[complete,test]
cd ..
git clone https://github.com/scikit-hep/uproot5
cd uproot5
python3 -m pip install .[test,dev]
python3 -m pytest -k dask