Skip to content

Commit 0481d9e

Browse files
authored
Merge pull request #16 from julesdehon/fix-cicd
Fix cicd
2 parents 2b74f30 + f084e4f commit 0481d9e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33

44
name: test
55

6-
on:
7-
push:
8-
branches: [ main ]
9-
pull_request:
10-
branches: [ main ]
6+
on: [push, pull_request]
117

128
permissions:
139
contents: read
@@ -30,6 +26,8 @@ jobs:
3026
python -m pip install --upgrade pip
3127
pip install flake8
3228
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
sudo add-apt-repository ppa:sumo/stable
30+
sudo apt-get update
3331
sudo apt-get install sumo sumo-tools
3432
- name: Lint with flake8
3533
run: |

0 commit comments

Comments
 (0)