Skip to content

Split download verify parts of download_sysext into separate module #200

Split download verify parts of download_sysext into separate module

Split download verify parts of download_sysext into separate module #200

Workflow file for this run

name: "Run CI"
permissions:
contents: read
pull-requests: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-test:
name: Build and test ue-rs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy, rustfmt
- name: Rustfmt Check
run: cargo fmt --all --check
- name: Build ue-rs
run: cargo build --workspace
- name: Run unit tests
run: cargo test --workspace
- name: Run clippy
run: cargo clippy --workspace -- --deny warnings