Skip to content

Merge pull request #45 from RedHatProductSecurity/csaf-docs-tweaks #102

Merge pull request #45 from RedHatProductSecurity/csaf-docs-tweaks

Merge pull request #45 from RedHatProductSecurity/csaf-docs-tweaks #102

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: ${{ matrix.tox_env }}
strategy:
matrix:
tox_env: [black, ruff, spdx-schema, cdx-schema]
runs-on: ubuntu-latest