Skip to content

Commit

Permalink
add a workflow that test uproot@main dask tests
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Aug 17, 2023
1 parent 4cbd754 commit 652630e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/uproot-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: awkward-main

on:
push:
branches: ['main']
paths-ignore: ['**.md', 'docs/**']
pull_request:
paths-ignore: ['**.md', 'docs/**']
workflow_dispatch:

concurrency:
group: 'coverage-${{ 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
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install
run: |
python3 -m pip install pip wheel -U
python3 -m pip install -q --no-cache-dir -e .[complete,test]
git clone https://github.com/scikit-hep/uproot
cd uproot
python3 -m pip install .[test]
- name: Run uproot dask tests
run: |
cd uproot
python3 -m pytest -k dask

0 comments on commit 652630e

Please sign in to comment.