Feat/pyarrow #1
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9, 3.11] | |
plattform: ["Python"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Maven cache | |
uses: actions/cache@v1 | |
with: | |
path: .tox/shared/.m2 | |
key: ${{ matrix.plattform }}-${{ matrix.python-version }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ matrix.plattform }}-${{ matrix.python-version }}-maven- | |
- name: Pip cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ matrix.plattform }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/*requirements.txt', 'tox.ini', 'setup.py') }} | |
restore-keys: | | |
${{ matrix.plattform }}-${{ matrix.python-version }}-pip- | |
- name: Install dependencies | |
# for some reason installing from https://github.com/baztian/tox-gh-actions/archive/allow-env-override.tar.gz doesn't work | |
run: pip install coveralls tox git+https://github.com/baztian/tox-gh-actions.git@allow-env-override | |
- name: Test with tox for non Jython only | |
run: tox | |
- name: Coveralls | |
uses: baztian/coveralls-python-action@new-merged-changes | |
with: | |
parallel: true | |
flag-name: ${{ matrix.plattform }}-${{ matrix.python-version }} | |
coverage-version: 4.5.4 | |
coveralls_finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: baztian/coveralls-python-action@new-merged-changes | |
with: | |
parallel-finished: true |