Commit a52803d 1 parent 7da2b5f commit a52803d Copy full SHA for a52803d
File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -24,21 +24,17 @@ jobs:
24
24
python-version : ' 3.x' # Adjust the version as needed
25
25
26
26
# Install opal dependencies
27
- - name : Install dependencies
27
+ - name : Install opal dependencies
28
28
run : pip install -r requirements.txt
29
29
30
30
# Ensure Docker is installed and running
31
31
- name : Set up Docker
32
32
uses : docker/setup-buildx-action@v2
33
33
34
- # cd into the tests directory
35
- - name : cd into tests directory
36
- run : cd ./tests
37
-
38
34
# Install test dependencies
39
- - name : Install dependencies
40
- run : pip install -r requirements.txt
35
+ - name : Install test dependencies
36
+ run : cd ./tests && pip install -r requirements.txt
41
37
42
38
# Run the tests using the script
43
39
- name : Run tests
44
- run : ls -la && ./run.sh
40
+ run : cd ./tests && ./run.sh
You can’t perform that action at this time.
0 commit comments