GitHub Actions allow to set CI directly into GitHub. This PR represents an alternative method to travis, but if you want to remove it completely, I can do it using this PR, no problem from my part.
Advantages
Less time than travis (5 minutes instead of 9)
Avoid using an external dependency
I've tried to replace all cargo build commands with the cargo test ones, but I got some building errors.
Since cargo builds the crates before testing them, these replacements would decrease the number of steps maintaining the same results.
Do you want me to replace all of them in order to see the errors? Or do you prefer the current way?
GitHub Actions allow to set
CI
directly intoGitHub
. This PR represents an alternative method totravis
, but if you want to remove it completely, I can do it using this PR, no problem from my part.Advantages
travis
(5 minutes instead of 9)I've tried to replace all
cargo build
commands with thecargo test
ones, but I got some building errors.Since
cargo
builds the crates before testing them, these replacements would decrease the number of steps maintaining the same results. Do you want me to replace all of them in order to see the errors? Or do you prefer the current way?Thanks in advance for your review! :)