Skip to content

Commit ce58db9

Browse files
committed
ci: lint on windows
1 parent 072f00c commit ce58db9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [push, pull_request]
44

55
jobs:
66

7-
linuxx:
8-
runs-on: ubuntu-latest
7+
lint:
8+
runs-on: windows-latest
99
strategy:
1010
matrix:
1111
python-version: ['3.x']
@@ -20,9 +20,7 @@ jobs:
2020
- run: flake8
2121
- run: mypy . src
2222

23-
- run: |
24-
sudo apt update -yq
25-
sudo apt install -yq --no-install-recommends ffmpeg
23+
- run: cinst -y ffmpeg
2624

2725
- run: pytest
2826

@@ -40,8 +38,8 @@ jobs:
4038
- run: brew install ffmpeg
4139
- run: pytest
4240

43-
windows:
44-
runs-on: windows-latest
41+
linux:
42+
runs-on: ubuntu-latest
4543
steps:
4644
- uses: actions/checkout@v2
4745
- uses: actions/setup-python@v2
@@ -50,6 +48,8 @@ jobs:
5048

5149
- run: pip install .[tests]
5250

53-
- run: cinst -y ffmpeg
51+
- run: |
52+
sudo apt update -yq
53+
sudo apt install -yq --no-install-recommends ffmpeg
5454
5555
- run: pytest

0 commit comments

Comments
 (0)