Skip to content

Commit

Permalink
Automation to ensure we test on all supported Rust versions as new st…
Browse files Browse the repository at this point in the history
…able Rust versions are released.

The following is the output from `git diff`:

```diff
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c828bdc..1075075 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -169,7 +169,7 @@ jobs:
         #
         #            Also make sure to update the MSRV in the cargo-semver-checks-action CI:
         #            https://github.com/obi1kenobi/cargo-semver-checks-action/blob/main/.github/workflows/test-action.yml#L18
-        toolchain: ["1.81", "1.82", "stable", "beta"]
+        toolchain: ["1.81", "1.82", "1.83", "stable", "beta"]
         experimental: [false]
         include:
           - toolchain: "nightly"
```
  • Loading branch information
github-actions committed Jan 9, 2025
1 parent 507393d commit 2b8ba47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
#
# Also make sure to update the MSRV in the cargo-semver-checks-action CI:
# https://github.com/obi1kenobi/cargo-semver-checks-action/blob/main/.github/workflows/test-action.yml#L18
toolchain: ["1.81", "1.82", "stable", "beta"]
toolchain: ["1.81", "1.82", "1.83", "stable", "beta"]
experimental: [false]
include:
- toolchain: "nightly"
Expand Down

0 comments on commit 2b8ba47

Please sign in to comment.