Fix for getting local cluster for Helm Chart testing in case testing on shared cluster is suppressed #236
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Run Tox tests on container-ci-suite | |
jobs: | |
tox_test: | |
name: Tox test | |
strategy: | |
matrix: | |
tox_env: [py36, py38, py39, py310, py311, py312] | |
# Use GitHub's Linux Docker host | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tox tests on container-ci-suite | |
id: test | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
dnf_install: gcc rpm-devel git python3-devel |