Skip to content

[pre-commit.ci] pre-commit autoupdate #1477

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #1477

Workflow file for this run

# SPDX-FileCopyrightText: 2017 Fermi Research Alliance, LLC
# SPDX-License-Identifier: Apache-2.0
---
name: Test in EL7/EL9 container
on:
pull_request:
branches:
- master
push:
branches:
- "**" # matches every branch
- "!gh-pages" # excludes gh-pages branch
jobs:
pytest_el7:
if: ${{ github.ref == 'refs/heads/1.7' }}
runs-on: ubuntu-latest
name: A job to test the decision engine framework on EL7
timeout-minutes: 30
steps:
- name: Checkout code tree
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run the tests in a container (SL7/HEPCloud-CI)
uses: ./.github/actions/python-command-in-sl7-container
- name: Archive logs
uses: actions/upload-artifact@v7
with:
name: test-el7-log
path: pytest_el7.log
if-no-files-found: error
pytest_el9:
if: ${{ false }} # temporary disable this job
runs-on: ubuntu-latest
name: A job to test the decision engine framework on EL9
timeout-minutes: 30
steps:
- name: Checkout code tree
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run the tests in a container (EL9/HEPCloud-CI)
uses: ./.github/actions/python-command-in-el9-container
- name: Archive logs
uses: actions/upload-artifact@v7
with:
name: test-el8-log
path: pytest_el8.log
if-no-files-found: error