From ac800aa5d2aefbb5ec3080a0d0f97e72e79970af Mon Sep 17 00:00:00 2001
From: Jean-Michel Picod <jmichel@google.com>
Date: Mon, 24 Feb 2020 19:25:57 +0100
Subject: [PATCH] Fix typo and pylint

---
 .github/workflows/pylint.yml | 2 +-
 .github/workflows/rust.yml   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
index 431d93c..754f852 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 92a12ed..21738c7 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
-- 
GitLab