Commit 7a3967f9a9df75da28bd765b5cf33f0073d9dfaf

Cléo Rebert 2022-08-09T11:09:46

Fix Workflow

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index bd8f9d0..ee7fe1b 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -20,20 +20,16 @@ jobs:
   test:
     runs-on: ubuntu-latest
     steps:
+    - uses: actions/checkout@v2
     - name: All features
-      uses: actions/checkout@v2
       run: cargo test --all-features
     - name: No feature
-      uses: actions/checkout@v2
       run: cargo test
     - name: otpauth feature
-      uses: actions/checkout@v2
       run: cargo test --features=otpauth
     - name: gen_secret feature
-      uses: actions/checkout@v2
       run: cargo test --features=gen_secret
     - name: otpauth+gensecret feature
-      uses: actions/checkout@v2
       run: cargo test --features=gen_secret,otpauth
 
   coverage: