Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wiiznokes committed Nov 10, 2023
1 parent 9a8c9ca commit e272a2d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# disable until I don't get spam of notification (. before filename)

version: 2
updates:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,9 @@ jobs:
rust-version: ${{ matrix.rust }}
components: rustfmt, clippy
- uses: actions/checkout@master

- name: Build libsensors
run: make libsensors

- name: cargo format + clippy
run: cargo fmt --all -- --check && cargo clippy --all
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master

- name: Build libsensors
run: make libsensors

- name: Run tests
run: |
cargo test --all --all-features
11 changes: 6 additions & 5 deletions .github/workflows/upload_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
with:
rust-version: nightly
- uses: actions/checkout@master
- name: build libsensors
run: |
make libsensors

- name: Build libsensors
run: make libsensors

- name: build release
run: |
cargo build --release
run: cargo build --release

- name: Upload Linux artifact
uses: actions/upload-artifact@v3.1.2
with:
Expand Down

0 comments on commit e272a2d

Please sign in to comment.