diff --git a/.github/workflows/mdlint.yml b/.github/workflows/mdlint.yml index fad84c8..1925812 100644 --- a/.github/workflows/mdlint.yml +++ b/.github/workflows/mdlint.yml @@ -7,7 +7,7 @@ on: [push] # - '!third_party/**' jobs: - pylint: + mdlint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a3727a2..92a12ed 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,3 +1,4 @@ +name: Cargo check on: [push] # push: # paths: @@ -34,8 +35,8 @@ jobs: name: Cargo format libraries/cbor needs: initial_setup steps: + - runs: cd libraries/crypto - uses: actions-rs/cargo@v1 - working-directory: libraries/cbor with: command: fmt args: --all -- --check @@ -43,8 +44,8 @@ jobs: name: Cargo format libraries/crypto needs: initial_setup steps: + - runs: cd libraries/crypto - uses: actions-rs/cargo@v1 - working-directory: libraries/crypto with: command: fmt args: --all -- --check