feat: support returning empty arrays in from_map
IO function calls based on user declared exceptions
#909
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: awkward-main | |
on: | |
push: | |
branches: ['main'] | |
paths-ignore: ['**.md', 'docs/**'] | |
pull_request: | |
paths-ignore: ['**.md', 'docs/**'] | |
workflow_dispatch: | |
concurrency: | |
group: 'awkward-main-${{ github.head_ref || github.run_id }}' | |
cancel-in-progress: true | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install | |
run: | | |
python3 -m pip install pip wheel -U | |
python3 -m pip install -q --no-cache-dir -e .[complete,test] | |
python3 -m pip uninstall -y awkward && pip install git+https://github.com/scikit-hep/awkward.git@main | |
- name: Run tests | |
run: | | |
python3 -m pytest |