Update internal RH repo URLs and don't snapshot EOL F39 #316
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
# | |
# CI for Gateway | |
# | |
# This workflow runs tests and other integration tools for the gateway | |
# application. | |
# | |
name: "CI Gateway" | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
# | |
# Run pytest | |
# | |
pytest: | |
name: "Python Tests" | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/osbuild/rpmrepo-ci:latest | |
steps: | |
- name: "Clone Repository" | |
uses: actions/checkout@v2 | |
- name: "Run pytest" | |
run: python3 -m pytest src/gateway/*.py |