build(deps): bump pyarrow from 13.0.0 to 15.0.0 #153
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
# SPDX-License-Identifier Apache-2.0 | |
# Source: https://github.com/dmyersturnbull/typed-dfs | |
# | |
# Runs tests via tox | |
# Runs on pull requests to main | |
name: Test on pull request | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: ["**/*.md", "**/*.rst"] | |
jobs: | |
build: | |
strategy: | |
max-parallel: 1 | |
matrix: | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
python-version: ["3.11"] | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Install build meta-dependencies | |
run: | | |
pip install 'tox>=4' 'poetry-core>=1.4' 'wheel>=0.36,<1.0' | |
- name: Test with tox | |
run: | | |
tox -v |