mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 12:12:47 +00:00
29 lines
507 B
YAML
29 lines
507 B
YAML
---
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
name: Run Tox tests
|
|
jobs:
|
|
tox_test:
|
|
name: Tox test
|
|
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:
|
|
- py37
|
|
- py310
|
|
- py311
|
|
|
|
# Use GitHub's Linux Docker host
|
|
runs-on: ubuntu-latest
|