Skip to content

Commit

Permalink
Remove beta from CI workflow
Browse files Browse the repository at this point in the history
Targetting stable, nightly, and MSRV should be adequate.
This will speed up CI.
  • Loading branch information
allan2 committed Sep 9, 2024
1 parent 03616a3 commit db0d6aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# minimum supported rust version
rust: [stable, beta, nightly, 1.74.0]
# Minimum Supported Rust Version
rust: [stable, nightly, 1.74.0]
on:
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
- { os: macos-latest, target: x86_64-apple-darwin }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ A non-macro example is [here](examples/modify-tokio/src/main.rs).

The `dotenv!` macro provided by `dotenvy_macro` crate can be used.

## Minimum supported Rust version
## Minimum Supported Rust version

We aim to support the latest 8 rustc versions - approximately 1 year. Increasing
MSRV is _not_ considered a semver-breaking change.
Expand Down

0 comments on commit db0d6aa

Please sign in to comment.