Skip to content

Add some tests for the issue transferring options #26

Add some tests for the issue transferring options

Add some tests for the issue transferring options #26

Workflow file for this run

---
name: pagure-exporter
on: [push, pull_request, workflow_dispatch]
jobs:
ci-basic:
strategy:
fail-fast: false
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
steps:
- uses: actions/checkout@v4
- name: Install the base dependencies
run: |
python3 -m pip install --upgrade poetry tox
- name: Check the correctness of the project config
run: |
poetry check
- name: Check the quality of the code
run: |
tox -e cleaning
ci-tests:
strategy:
fail-fast: false
matrix:
tox-env: ["py311"]
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
steps:
- uses: actions/checkout@v4
- name: Install the base dependencies
run: |
python3 -m pip install --upgrade tox
- name: Set up user for running the testcases
run: |
useradd testrunner
chown -R testrunner .
- name: Execute tox
run: |
su testrunner -c "tox -e ${{ matrix.tox-env }}"