build: list Rust version used by CI

This commit is contained in:
Alex Shelkovnykov 2023-05-20 18:50:25 +00:00
parent 94457e5f90
commit 1c62849272

View File

@ -14,13 +14,18 @@ jobs:
steps:
- uses: actions/checkout@v3
# Makes it easier to determine why CI might differ from local linter/build
#
- name: Version
run: rustc --version
- name: Format
run: cargo fmt --check
# See clippy linter docs: https://github.com/rust-lang/rust-clippy
#
# First linter is set to fail for all warnings, then ignored warnings explicitly
# are explicitly listed
# First linter is set to fail for all warnings, then ignored warnings are
# explicitly listed
#
- name: Lint
run: |