Skip to content

Commit

Permalink
Add GitHub Actions workflow for Python package testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Python-in-China committed Oct 4, 2024
1 parent 6f47f11 commit 2727298
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Python package

on:
- push
- pull_request

jobs:
build:
strategy:
matrix:
platform: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.6
uses: actions/setup-python@v4
with:
python-version: '3.6'
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with tox
run: python -m tox
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,5 @@ venv/

# VS Code
.vscode

.python-version
11 changes: 10 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
[tox]
envlist = py36, py37, py38, py39, py310, py311, py312
requires = virtualenv < 20.22.0
isolated_build = true

[testenv]
commands=python unit_test.py
deps =
xeger
colorful
commands = python unit_test.py
allowlist_externals = poetry

0 comments on commit 2727298

Please sign in to comment.