Revert "Dockerfile: set default ARG rcm_tools_repo_file" #53
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.9" | |
| - uses: fedora-python/tox-github-action@v39.0 | |
| with: | |
| tox_env: flake8 | |
| dnf_install: gcc krb5-devel | |
| - uses: fedora-python/tox-github-action@v39.0 | |
| with: | |
| tox_env: safety | |
| dnf_install: gcc krb5-devel | |
| - uses: fedora-python/tox-github-action@v39.0 | |
| with: | |
| tox_env: bandit | |
| dnf_install: gcc krb5-devel | |
| testing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.9" | |
| - uses: fedora-python/tox-github-action@v39.0 | |
| with: | |
| tox_env: py39 | |
| dnf_install: krb5-devel |