Skip to content

Update doc for pipelines #164

Update doc for pipelines

Update doc for pipelines #164

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:
tox_env: py313
# Add krb5-devel to the list of packages to install
dnf_install: krb5-devel
strategy:
matrix:
tox_env: [black, ruff, spdx-schema, cdx-schema]
runs-on: ubuntu-latest