Closed C-BJ closed 1 year ago
Why tests and builds are run independently is to reduce CI run time.
This change should basically make CI time worse (though there will be a cache effect).
I see, But I don't understand the purpose of build and check
The reason I used cargo build
instead of cargo check
is that cargo check
does not allow for some checks(ref). I didn't leave my intentions in a comment out, so I guess I didn't get the message.
I mean, why don't we just test it? without build and check?
The advantage is that when CI fails, it is easy to see whether the build or the test has failed.
I see
Changes proposed in this PR:
rust.yml
->ci.yml
cargo check
rather thancargo build
in build and check@mtshiba