Skip to content

Commit

Permalink
init cosmos block
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere committed Sep 23, 2024
1 parent cb9affe commit c934a82
Show file tree
Hide file tree
Showing 14 changed files with 1,372 additions and 9 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Push
on: [push, pull_request]

jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Run cargo check
run: cargo check

test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Run cargo test
run: cargo test

lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Run cargo fmt
run: cargo fmt --all -- --check

- name: Run cargo clippy
run: cargo clippy -- -D warnings
Loading

0 comments on commit c934a82

Please sign in to comment.