Skip to content

Commit

Permalink
github actions review
Browse files Browse the repository at this point in the history
  • Loading branch information
aprosail committed Jun 15, 2024
1 parent 0743ccb commit afe41a9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/review.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: review

on:
push: {branches: ["main", "dev"]}
pull_request: {branches: ["main", "dev"]}

jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sh review.sh
3 changes: 3 additions & 0 deletions review.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cargo fmt --check
cargo check
cargo test

0 comments on commit afe41a9

Please sign in to comment.