Skip to content

Commit

Permalink
Minimal pypy3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 2, 2024
1 parent 0a67a15 commit ba1b07c
Showing 1 changed file with 3 additions and 44 deletions.
47 changes: 3 additions & 44 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,61 +2,20 @@ name: Test

on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [
"pypy3.10",
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"3.14",
"3",
"3.x",
]
os: [
windows-latest,
macOS-latest,
ubuntu-latest,
]
os: [ windows-latest, macOS-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
cache-dependency-path: .github/workflows/test.yml

- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install -U pytest
python3 -m pip install -U tqdm
python3 -m pip install -vvv coverage>=7.4.2
- name: Test
run: |
python --version
python test.py
python -m pip --version
jq --version
python-version: pypy3.10

- run: |
python -m pip install uv
uv --version
uv venv
uv pip install norwegianblue --color=always
- run: python --version --version

0 comments on commit ba1b07c

Please sign in to comment.