Skip to content

Commit

Permalink
Reincoreporate simplified rust job
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Jun 17, 2024
1 parent 24d64a8 commit ca82d6d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust

on:
push:
branches: [ main, release/** ]
pull_request:

defaults:
run:
shell: bash

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run: cargo fmt --all --check
- run: cargo clippy -Dwarnings -Dclippy::all -Dclippy::pedantic
- run: cargo test

0 comments on commit ca82d6d

Please sign in to comment.