mirror of
https://github.com/danieldemus/pyp2spec.git
synced 2026-07-29 05:34:22 +02:00
18 lines
347 B
YAML
18 lines
347 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
pull_request:
|
|
jobs:
|
|
unit_test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run Tox tests
|
|
id: test
|
|
uses: fedora-python/tox-github-action@main
|
|
with:
|
|
tox_env: ${{ matrix.tox_env }}
|
|
strategy:
|
|
matrix:
|
|
tox_env: [py39, py310, py311, py312, py313]
|