Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for monitoring for file changes using fanotify #252

Merged
merged 3 commits into from
Dec 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -83,11 +83,11 @@ jobs:
run: make clean test
- name: Generate code coverage
run: make clean coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
files: target/lcov.info
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
- name: Check if can publish to crates.io
uses: katyo/publish-crates@v1
with:
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -92,6 +92,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install gcc-9-multilib lib32gcc-9-dev
- uses: gerlero/brew-install@v1
if: matrix.os == 'macos-latest'
with:
packages: yamllint
- name: Install rust
uses: actions-rs/toolchain@v1
with:
Loading