Skip to content

Commit

Permalink
sanity-check, avoiding use of docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
maxb-io committed Jul 31, 2023
1 parent aa12ff3 commit 2097e5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sanity_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:

- name: pre
run: apt update && apt install -y sudo git make clang build-essential clang-format wget
run: sudo apt update && apt install -y sudo git make clang build-essential clang-format wget

- name: Checkout feature branch
uses: actions/checkout@v2
Expand All @@ -36,10 +36,10 @@ jobs:
architecture: 'x64'

- name: Install Dependencies
run: python -m pip install --upgrade pip
run: sudo python -m pip install --upgrade pip

- name: Install argparse
run: pip install argparse
run: sudo pip install argparse

- name: Download clang-format-diff.py
run: |
Expand Down

0 comments on commit 2097e5a

Please sign in to comment.