Skip to content

Commit

Permalink
fix missing .git directory
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed May 23, 2022
1 parent e313986 commit d3499cb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,22 @@ jobs:
- TEST : debian-unstable
DOCKER_IMAGE : debian:unstable
steps:
- name: Setup OS
run: |
sudo apt-get update -y
sudo apt-get upgrade -y
- name: Setup Git
run: |
sudo apt-get install -y git
- name: Chcekout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: recursive
# python3_check
- name: python3_check
if: matrix.CHECK_PYTHON3_COMPILE == true
run: python3 -m compileall .
run: pwd; ls -al; git diff; python3 -m compileall .
# catkin_lint
- name: catkin_lint setup
if: matrix.TEST == 'catkin_lint'
Expand Down

0 comments on commit d3499cb

Please sign in to comment.