Dockerfile: upgrade to fedora:39 #40
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: 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" | |
cache: 'pip' # caching pip dependencies | |
- uses: fedora-python/[email protected] | |
with: | |
tox_env: flake8 | |
dnf_install: krb5-devel python3-setuptools | |
- uses: fedora-python/[email protected] | |
with: | |
tox_env: safety | |
dnf_install: krb5-devel python3-setuptools | |
- uses: fedora-python/[email protected] | |
with: | |
tox_env: bandit | |
dnf_install: krb5-devel python3-setuptools | |
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/[email protected] | |
with: | |
tox_env: py39 | |
dnf_install: krb5-devel |