Skip to content

readme: add warning for "tables" dependency on Apple Silicon #793

readme: add warning for "tables" dependency on Apple Silicon

readme: add warning for "tables" dependency on Apple Silicon #793

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
run:
continue-on-error: True
runs-on: ${{ matrix.os }}
strategy:
matrix:
# on macos-11 instead of macos-latest, see https://github.com/bancaditalia/black-it/issues/79
os: [ubuntu-latest, macos-11, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
timeout-minutes: 30
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox poetry
# # set up environment depending on the platform in use
# - if: matrix.os == 'ubuntu-latest'
# name: Install dependencies (ubuntu-latest)
# run: ...
# - if: matrix.os == 'macos-latest'
# name: Install dependencies (macos-latest)
# run: ...
# - if: matrix.os == 'windows-latest'
# name: Install dependencies (windows-latest)
# env:
# ACTIONS_ALLOW_UNSECURE_COMMANDS: true
# run: ...
- if: ${{ (matrix.os == 'ubuntu-latest') || (matrix.os == 'macos-11') }}
name: Unit tests and coverage (ubuntu-latest, macos-11)
run: |
pyver=`echo ${{ matrix.python-version }} | tr -d "."`
tox -e py${pyver} -- -m 'not e2e'
tox -e py${pyver}-nb
- if: ${{ (matrix.os == 'ubuntu-latest') || (matrix.os == 'macos-11') }}
name: Notebook tests (ubuntu-latest, macos-11)
run: |
pyver=`echo ${{ matrix.python-version }} | tr -d "."`
tox -e py${pyver}-nb
- if: matrix.os == 'windows-latest'
name: Unit tests and coverage (windows-latest)
run: |
$pyver = "${{ matrix.python-version }}" -replace '\.'
tox -e "py$pyver" -- -m 'not e2e' | Tee-Object output.txt -ErrorAction SilentlyContinue
.\scripts\check-tox-output.ps1 output.txt
- if: matrix.os == 'windows-latest'
name: Notebook tests (windows-latest)
run: |
$pyver = "${{ matrix.python-version }}" -replace '\.'
tox -e "py$pyver-nb" | Tee-Object output.txt -ErrorAction SilentlyContinue
.\scripts\check-tox-output.ps1 output.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false