diff options
author | Rory Dudley | 2024-02-29 00:26:22 -0700 |
---|---|---|
committer | Rory Dudley | 2024-02-29 00:26:22 -0700 |
commit | 566667d73ef3caefca79b881e71c907fa41993ca (patch) | |
tree | 4dfb3804efcf3f126942ac5a788fbc69a108a0e4 | |
parent | 632b0f2a145df1c8a5d352e5ec91809ea939b1c7 (diff) | |
download | dwarvish-566667d73ef3caefca79b881e71c907fa41993ca.tar.gz |
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.
-rw-r--r-- | .github/workflows/dwarvish.yml | 59 |
1 files changed, 59 insertions, 0 deletions
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 |