Skip to content

Commit 8df7c5b

Browse files
authored
Merge pull request videomorph-dev#64 from videomorph-dev/codeshard-matrix-strategy
Update release.yml
2 parents 390a0cb + 684f40a commit 8df7c5b

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,21 @@ on:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
python-version: [3.7, 3.8, 3.9]
1518
steps:
16-
- uses: actions/checkout@v2
17-
- name: Set up Python 3.8
19+
- name: Checkout Code
20+
uses: actions/checkout@v2
21+
with:
22+
fetch-depth: 0
23+
- name: Set up Python ${{ matrix.python-version }}
1824
uses: actions/setup-python@v2
1925
with:
20-
python-version: 3.8
26+
python-version: ${{ matrix.python-version }}
2127
- name: Install FFMPEG
2228
run: |
23-
sudo apt-get update
24-
sudo apt-get -y install ffmpeg
29+
sudo apt update && sudo apt -y install ffmpeg
2530
- name: Install dependencies
2631
run: |
2732
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)