Skip to content

Commit e575939

Browse files
author
Francisco Martínez Lasaca
committed
Fix test CI/CD
1 parent fb4792a commit e575939

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

Diff for: .github/workflows/python-tests.yml

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@ name: Python tests
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v2
16-
- name: Set up Python 3.9
17-
uses: actions/setup-python@v2
18-
with:
19-
python-version: "3.9"
20-
- name: Test with unittest
21-
run: python3 ros2_automatic_fuzzer/setup.py test
22-
- name: Compile all
23-
run: python3 -m compileall
14+
- uses: actions/checkout@v2
15+
- name: Set up Python 3.9
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: "3.9"
19+
- name: Install wheel
20+
run: pip install wheel
21+
- name: Test with unittest
22+
run: python3 ros2_automatic_fuzzer/setup.py test
23+
- name: Compile all
24+
run: python3 -m compileall

0 commit comments

Comments
 (0)