Skip to content

Add step to build a "production" fedora build on pull requests #2497

Add step to build a "production" fedora build on pull requests

Add step to build a "production" fedora build on pull requests #2497

Workflow file for this run

name: Ruff Gate
on:
merge_group:
branches: [ 'master' ]
push:
branches: [ '*', '!stabilization*', '!stable*', '!master' ]
pull_request:
branches: [ 'master', 'stabilization*', 'oscal-update-*' ]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.run_id }}
cancel-in-progress: true
jobs:
ruff:
name: Run ruff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 #v7.0.1
- name: Install ruff
run: python3 -m pip install ruff
- name: Run ruff check
run: ruff check