Skip to content

Commit f3e6f99

Browse files
committed
try fix CI
1 parent ea52c13 commit f3e6f99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: get nunavut
2424
run: |
2525
python3 -m venv .venv
26-
source .venv/bin/activate
26+
. .venv/bin/activate
2727
pip install git+https://github.com/OpenCyphal/[email protected]
2828
- name: Install sonar-scanner and build-wrapper
2929
uses: SonarSource/sonarcloud-github-c-cpp@v2

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# TODO: setup a venv, cache, and distribute to the other jobs.
3232
run: |
3333
python3 -m venv .venv
34-
source .venv/bin/activate
34+
. .venv/bin/activate
3535
pip install git+https://github.com/OpenCyphal/[email protected]
3636
- name: configure
3737
run: >
@@ -73,7 +73,7 @@ jobs:
7373
- name: get nunavut
7474
run: |
7575
python3 -m venv .venv
76-
source .venv/bin/activate
76+
. .venv/bin/activate
7777
pip install git+https://github.com/OpenCyphal/[email protected]
7878
- name: run tests
7979
env:
@@ -120,7 +120,7 @@ jobs:
120120
- name: get nunavut
121121
run: |
122122
python3 -m venv .venv
123-
source .venv/bin/activate
123+
. .venv/bin/activate
124124
pip install git+https://github.com/OpenCyphal/[email protected]
125125
- name: doc-gen
126126
run: >

0 commit comments

Comments
 (0)