Skip to content

Commit

Permalink
rust node exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
guptadev21 committed Jul 25, 2024
0 parents commit 3903072
Show file tree
Hide file tree
Showing 19 changed files with 2,883 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --tests
- name: Run tests
run: cargo test --tests
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/target
metrics.txt
.vscode

Loading

0 comments on commit 3903072

Please sign in to comment.