Skip to content

Commit

Permalink
init of builder
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Apr 19, 2024
0 parents commit 85bbc2f
Show file tree
Hide file tree
Showing 11 changed files with 5,772 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Cargo lint and test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
lint_and_test:
name: Marinade Common RS CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install libudev
run: sudo apt-get install -y libudev-dev pkg-config
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.69.0
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target

.idea/
Loading

0 comments on commit 85bbc2f

Please sign in to comment.