Skip to content

Update cd command to use correct path traversal from the path crate to allow for parent directory #1902

Update cd command to use correct path traversal from the path crate to allow for parent directory

Update cd command to use correct path traversal from the path crate to allow for parent directory #1902

Workflow file for this run

name: Clippy Checks
on:
pull_request:
types: [synchronize, opened, reopened]
jobs:
run-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Initialize git submodules"
run: |
git submodule update --init --recursive
- name: "Install nasm"
run: |
sudo apt update
sudo apt install nasm
- name: "Run Clippy"
working-directory: .
run: |
make clippy ARCH=x86_64
make clippy ARCH=aarch64