From 566667d73ef3caefca79b881e71c907fa41993ca Mon Sep 17 00:00:00 2001 From: Rory Dudley Date: Thu, 29 Feb 2024 00:26:22 -0700 Subject: Github actions Add a yaml file to run `cargo check`, `cargo fmt`, and `cargo test`, every time a branch is pushed, or every time a pull request is made. --- .github/workflows/dwarvish.yml | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/dwarvish.yml diff --git a/.github/workflows/dwarvish.yml b/.github/workflows/dwarvish.yml new file mode 100644 index 0000000..c827fe9 --- /dev/null +++ b/.github/workflows/dwarvish.yml @@ -0,0 +1,59 @@ +on: [push, pull_request] +name: Dwarvish Source Analysis +jobs: + verify: + name: Verify + runs-on: debian-latest + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: Install Rust stable + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - name: Run cargo check + uses: actions-rs/cargo@v1 + with: + command: check + lint: + name: Lint + runs-on: debian-latest + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: Install Rust stable + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + components: rustfmt + + - name: Run cargo fmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + test: + name: Test + runs-on: debian-latest + steps: + - name: Checkout source + uses: actions/checkout@v4 + + - name: Install Rust stable + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + + - name: Run cargo test + uses: actions-rs/cargo@v1 + with: + command: test -- cgit v1.2.3