Skip to content

Commit

Permalink
install git before checking out code
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhhughes committed Aug 29, 2024
1 parent fa1e802 commit 2b769c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/catkin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ jobs:
runs-on: ubuntu-latest
container: ros:noetic-ros-base-focal
steps:
- name: Install Git
run: apt update && apt install -y git
# checkout the code
- uses: actions/checkout@v4
with:
Expand All @@ -14,7 +16,7 @@ jobs:
# install necessary dependences
- name: Dependencies
run: |
apt update && apt install -y python3-wstool python3-catkin-tools python3-vcstool git
apt update && apt install -y python3-wstool python3-catkin-tools python3-vcstool
rosdep update --rosdistro noetic && rosdep install --rosdistro noetic --from-paths src --ignore-src -r -y
# configure repo
- name: Configure
Expand Down

0 comments on commit 2b769c1

Please sign in to comment.