diff options
| author | Fuwn <[email protected]> | 2022-02-27 14:53:33 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-02-27 14:53:33 +0000 |
| commit | 68e792aceff2068f2b96b4eeeb44ccda65c0b231 (patch) | |
| tree | a30dd2959f3e99d15bc6b4c12fac5a32c3b8994a /.github/workflows/rust.yaml | |
| download | para-68e792aceff2068f2b96b4eeeb44ccda65c0b231.tar.xz para-68e792aceff2068f2b96b4eeeb44ccda65c0b231.zip | |
feat(para): :star:
Diffstat (limited to '.github/workflows/rust.yaml')
| -rw-r--r-- | .github/workflows/rust.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml new file mode 100644 index 0000000..255beac --- /dev/null +++ b/.github/workflows/rust.yaml @@ -0,0 +1,35 @@ +name: Rust ✅ + +on: + workflow_dispatch: + push: + paths: + - "*" + pull_request: + paths: + - "*" + +env: + CARGO_TERM_COLOR: always + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛒 + uses: actions/checkout@v2 + + - name: Toolchain 🧰 + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly-2022-02-20 + components: rustfmt, clippy + override: true + + - name: Check ✅ + uses: actions-rs/cargo@v1 + continue-on-error: false + with: + command: check + args: --verbose |