Use renovate to bump base image refs #716
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: Run Tox | |
# yamllint disable rule:truthy | |
on: | |
push: | |
branches: | |
- main | |
- legacy | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tox tests | |
id: test | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: py39,py312,lint | |
dnf_install: >- | |
--repo fedora --repo updates | |
krb5-devel | |
- name: Coveralls | |
uses: AndreMiras/coveralls-python-action@develop |