diff options
Diffstat (limited to '.github')
-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 |