We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 390a0cb + 684f40a commit 8df7c5bCopy full SHA for 8df7c5b
.github/workflows/release.yml
@@ -12,16 +12,21 @@ on:
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ python-version: [3.7, 3.8, 3.9]
18
steps:
- - uses: actions/checkout@v2
- - 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 }}
24
uses: actions/setup-python@v2
25
with:
- python-version: 3.8
26
+ python-version: ${{ matrix.python-version }}
27
- name: Install FFMPEG
28
run: |
- sudo apt-get update
- sudo apt-get -y install ffmpeg
29
+ sudo apt update && sudo apt -y install ffmpeg
30
- name: Install dependencies
31
32
python -m pip install --upgrade pip
0 commit comments