-
Notifications
You must be signed in to change notification settings - Fork 11
65 lines (62 loc) · 2.03 KB
/
package.yml
File metadata and controls
65 lines (62 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Python package
on: [push]
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", "pypy3.11"]
experimental: [false]
include:
- python-version: "3.13"
os: ubuntu-24.04-arm
experimental: false
- python-version: "3.13"
os: windows-11-arm
experimental: false
- python-version: "3.14"
os: ubuntu-24.04-arm
experimental: false
- python-version: "3.14"
os: windows-11-arm
experimental: false
- python-version: "3.14t"
os: ubuntu-24.04-arm
experimental: false
- python-version: "3.14t"
os: windows-11-arm
experimental: false
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: tox-gh workaround for freethreaded(!windows)
if: ${{ runner.os != 'Windows' && matrix.python-version == '3.14t' }}
run: echo "TOX_GH_MAJOR_MINOR=3.14t" >> $GITHUB_ENV
- name: tox-gh workaround for freethreaded(windows)
if: ${{ runner.os == 'Windows' && matrix.python-version == '3.14t' }}
run: echo "TOX_GH_MAJOR_MINOR=3.14t" >> $env:GITHUB_ENV
- name: Install dependencies
run: |
python3 -m pip install 'tox' 'tox-gh'
tox --version
- name: Install native deps (Linux)
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install -y mecab libmecab-dev mecab-ipadic-utf8
- name: Test with tox
run: |
tox