[pre-commit.ci] pre-commit autoupdate #41
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: "Build and Test" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ ubuntu-latest, windows-latest, macos-latest ] | |
python-version: [ "3.8", "3.9", "3.10", "3.11" ] | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install uproot and awkward" | |
# We want to run tests with and without uproot | |
if: "matrix.python-version == 3.9 || matrix.python-version == 3.10" | |
run: | | |
python -m pip install uproot awkward | |
- name: "Install the package with pip" | |
run: python -m pip install .[test] | |
- name: "Run pytest" | |
run: python -m pytest |