diff options
author | 2024-02-11 21:34:18 -0800 | |
---|---|---|
committer | 2024-02-11 21:34:18 -0800 | |
commit | c4918fcf71a7a32b9973cefde63071b925355b1c (patch) | |
tree | b7c24c9d2182907fabb06621f76f0be99ccb2f00 | |
parent | 3842f63018bb1fe777d4866413ad979598a003eb (diff) | |
download | trakt-c4918fcf71a7a32b9973cefde63071b925355b1c.tar.gz trakt-c4918fcf71a7a32b9973cefde63071b925355b1c.tar.zst trakt-c4918fcf71a7a32b9973cefde63071b925355b1c.zip |
Adds rust installation to pre-commit
-rw-r--r-- | .github/workflows/pre-commit.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index cb4a0e8..89f951a 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,4 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 + + - name: Install Rust + uses: dtolnay/rust-toolchain@nightly + with: + components: rustfmt, clippy + - uses: pre-commit/action@v3.0.1 |