cargo: update package edition to 2021 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continus Integration | |
on: | |
push: | |
paths: | |
- ".github/workflows/build.yml" | |
- "Cargo.*" | |
- "src/**" | |
pull_request: | |
paths: | |
- ".github/workflows/build.yml" | |
- "Cargo.*" | |
- "src/**" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check_and_clippy: | |
runs-on: ubuntu-22.04 | |
env: | |
RUSTFLAGS: "-D warnings" | |
strategy: | |
fail-fast: false | |
name: Cargo clippy, test, fmt & doc | |
steps: | |
- name: "Install dependencies Ubuntu" | |
run: | | |
sudo apt-get update && sudo apt-get install -y --no-install-recommends build-essential pkg-config | |
sudo apt-get install -y libleptonica-dev libtesseract-dev | |
- name: "Install rust-toolchain stable" | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy, rustfmt | |
- name: "Show environment" | |
run: | | |
rustc -vV | |
cargo -vV | |
- name: "Checkout" | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
- name: "Cargo clippy" | |
id: cargo_clippy | |
if: $${{ always() }} | |
run: | | |
cargo clippy --profile=test -- -D warnings | |
- name: "Cargo test" | |
id: cargo_test | |
if: $${{ always() }} | |
run: | | |
cargo test | |
- name: "Cargo formatting" | |
id: cargo_fmt | |
if: $${{ always() }} | |
run: | | |
cargo fmt --all -- --check | |
- name: "Cargo doc" | |
id: cargo_doc | |
if: $${{ always() }} | |
run: | | |
cargo doc | |
- name: "Some checks failed" | |
if: ${{ failure() }} | |
run: | | |
echo "### :x: Checks Failed!" >> $GITHUB_STEP_SUMMARY | |
echo "" >> $GITHUB_STEP_SUMMARY | |
echo "|Job|Status|" >> $GITHUB_STEP_SUMMARY | |
echo "|---|------|" >> $GITHUB_STEP_SUMMARY | |
echo "|Cargo clippy|${{ steps.cargo_clippy.outcome }}|" >> $GITHUB_STEP_SUMMARY | |
echo "|Cargo test|${{ steps.cargo_test.outcome }}|" >> $GITHUB_STEP_SUMMARY | |
echo "|Cargo fmt|${{ steps.cargo_fmt.outcome }}|" >> $GITHUB_STEP_SUMMARY | |
echo "|Cargo doc|${{ steps.cargo_doc.outcome }}|" >> $GITHUB_STEP_SUMMARY | |
echo "" >> $GITHUB_STEP_SUMMARY | |
echo "Please check the failed jobs and fix where needed." >> $GITHUB_STEP_SUMMARY | |
echo "" >> $GITHUB_STEP_SUMMARY | |
exit 1 | |
- name: "All checks passed" | |
if: ${{ success() }} | |
run: | | |
echo "### :white_check_mark: Checks Passed!" >> $GITHUB_STEP_SUMMARY | |
echo "" >> $GITHUB_STEP_SUMMARY |