Skip to content

Commit e2a67d1

Browse files
authored
Update install_requirements.yml
1 parent 1295a87 commit e2a67d1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/install_requirements.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,16 @@
3434
run: apt-get update -qq && apt-get -qq install python3.6 python3.6-pip sudo
3535
- name: Install requirements
3636
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

Comments
 (0)