Skip to content

Commit da081a5

Browse files
ci.yml: Correct the Rust compiler version
The Rust compiler version according is incorrect in the job name 'build-1-60-0', it should be 'build-1-66-0'. However, to be more generic and for better maintainability: * Change the job name to 'build-msrv' * Replace occurrences of the Rust version with MSRV in all possible places. Signed-off-by: Tomás González <[email protected]>
1 parent b7a1813 commit da081a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Continuous Integration
33
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
build-1-60-0:
7-
name: "All tests: rustc 1.66.0"
6+
build-msrv:
7+
name: "All tests: rustc MSRV"
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Install Rust 1.66.0
11+
- name: Install Rust MSRV
1212
uses: actions-rust-lang/setup-rust-toolchain@v1
1313
with:
1414
toolchain: 1.66.0

0 commit comments

Comments
 (0)