fix source logging in v1.7 #1792
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test in EL7 container | |
on: | |
pull_request: | |
branches: | |
- master | |
- 1.7 | |
push: | |
branches: | |
- '**' # matches every branch | |
- '!gh-pages' # excludes gh-pages branch | |
jobs: | |
pytest: | |
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@v2 | |
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@v2 | |
with: | |
name: test-log | |
path: pytest.log | |
if-no-files-found: error |