Rename workflows

This commit is contained in:
Jean-Michel Picod
2020-02-24 19:22:04 +01:00
parent ca40818eb6
commit 949e06ce51
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ on: [push]
# - '!third_party/**' # - '!third_party/**'
jobs: jobs:
pylint: mdlint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@@ -1,3 +1,4 @@
name: Cargo check
on: [push] on: [push]
# push: # push:
# paths: # paths:
@@ -34,8 +35,8 @@ jobs:
name: Cargo format libraries/cbor name: Cargo format libraries/cbor
needs: initial_setup needs: initial_setup
steps: steps:
- runs: cd libraries/crypto
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
working-directory: libraries/cbor
with: with:
command: fmt command: fmt
args: --all -- --check args: --all -- --check
@@ -43,8 +44,8 @@ jobs:
name: Cargo format libraries/crypto name: Cargo format libraries/crypto
needs: initial_setup needs: initial_setup
steps: steps:
- runs: cd libraries/crypto
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
working-directory: libraries/crypto
with: with:
command: fmt command: fmt
args: --all -- --check args: --all -- --check