We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1295a87 commit e2a67d1Copy full SHA for e2a67d1
.github/workflows/install_requirements.yml
@@ -34,3 +34,16 @@
34
run: apt-get update -qq && apt-get -qq install python3.6 python3.6-pip sudo
35
- name: Install requirements
36
run: cd examples && python3.6 install_requirements.py
37
+ install_requirements-fedora:
38
+ runs-on: ubuntu-latest
39
+ strategy:
40
+ matrix:
41
+ container_image: ["fedora:34", "fedora:35", "fedora:36"]
42
+ container:
43
+ image: ${{ matrix.container_image }}
44
+ steps:
45
+ - uses: actions/checkout@v3
46
+ - name: Set up Python
47
+ run: yum update -y && yum install -y install python3 python3-pip sudo
48
+ - name: Install requirements
49
+ run: cd examples && python3 install_requirements.py
0 commit comments