diff options
| author | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
| commit | f63f2b749aa0ff4efdc367b514aba08c23dd7c89 (patch) | |
| tree | e7d692aeff08cabc8d6d321aa05c4f0c25d7ca45 /.github/workflows | |
| download | sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.tar.xz sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.zip | |
feat: initial release
Diffstat (limited to '.github/workflows')
| -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..e994afb --- /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@v3 + + - name: Toolchain 🧰 + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + components: rustfmt, clippy + override: true + + - name: Check ✅ + uses: actions-rs/cargo@v1 + continue-on-error: false + with: + command: check + args: --verbose |