Skip to content

try to reproduce GH-37 using actions #140

try to reproduce GH-37 using actions

try to reproduce GH-37 using actions #140

Workflow file for this run

name: Python package
on: [push]
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version:
["3.8", "3.9", "3.10", "3.11", "3.12", "pypy2.7", "pypy3.10"]
experimental: [false]
include: []
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install -U pip
python3 -m pip install tox tox-gh-actions
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
test-static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: sksat/[email protected]
- name: prepare
run: |
rye sync
- name: run pytest
run: |
rye run pytest