Lines Matching +full:apt +full:- +full:get
7 runs-on: ubuntu-22.04
10 - name: Checkout the code
14 fetch-depth: 0
16 - name: cache-pip
20 key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/coding_guidelines.yml') }}
22 - name: Install python dependencies
27 - name: Install Packages
29 sudo apt-get update
30 sudo apt-get install coccinelle
32 - name: Run Coding Guildeines Checks
33 continue-on-error: true
39 git config --global user.email "actions@zephyrproject.org"
40 git config --global user.name "Github Actions"
41 git remote -v
42 rm -fr ".git/rebase-apply"
43 rm -fr ".git/rebase-merge"
45 git clean -f -d
46 source zephyr-env.sh
48 ls -la
49 git log --pretty=oneline | head -n 10
50 ./scripts/ci/guideline_check.py --output output.txt -c origin/${BASE_REF}..
52 - name: check-warns
54 if [[ -s "output.txt" ]]; then