diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 431d93cb60ecafe516d7e76bb8b8a2355c755aa4..754f85231c5a6cf6c699ef8a4406a139f08af9da 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,4 +24,4 @@ jobs: - name: Test code with pylint run: | pip install pylint - pylint --rcfile=.pylintrc + pylint --rcfile=.pylintrc `find . -maxdepth 1 -type f -name '*.py'` diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 92a12ed8e78710bda664df37e1edb8449ad30ce1..21738c7083db9aeebea8a849bfca8be1fc58d513 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -35,7 +35,7 @@ jobs: name: Cargo format libraries/cbor needs: initial_setup steps: - - runs: cd libraries/crypto + - run: cd libraries/crypto - uses: actions-rs/cargo@v1 with: command: fmt @@ -44,7 +44,7 @@ jobs: name: Cargo format libraries/crypto needs: initial_setup steps: - - runs: cd libraries/crypto + - run: cd libraries/crypto - uses: actions-rs/cargo@v1 with: command: fmt