BUG: Require typing-extensions >= 4.6.0 #282
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: test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] | |
include: | |
- os: macos-13 | |
python-version: '3.11' | |
- os: macos-14 | |
python-version: '3.11' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
# see https://github.com/actions/runner-images/issues/9256 | |
- name: Fix pipx permissions | |
if: matrix.os == 'macos-14' | |
run: | | |
for d in "$PIPX_HOME" "$PIPX_BIN_DIR" ; do | |
if [[ -n "$d" ]] ; then | |
sudo mkdir -p "$d" | |
sudo chown -R $(id -u) "$d" | |
fi | |
done | |
- name: Install Hatch | |
run: pipx install hatch | |
- name: Run tests | |
run: hatch run +py=${{ matrix.python-version }} cov |