Skip to content

Add Rpm Module Examples #156

Add Rpm Module Examples

Add Rpm Module Examples #156

Workflow file for this run

name: CI
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tox:
name: Run Tox
steps:
- uses: actions/checkout@v2
- name: Run all envs
uses: fedora-python/tox-github-action@main
with:
# Add krb5-devel to the list of packages to install
install-packages: |
krb5-devel
tox-args: '--recreate' # Optional: good to add after changing dependencies
tox_env: py313

Check failure on line 25 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 25, Col: 7): Unexpected value 'tox_env'
strategy:
matrix:
tox_env: [black, ruff, spdx-schema, cdx-schema]
runs-on: ubuntu-latest