Skip to content

feat: add ETag to track the changed status of an object on the server #17

feat: add ETag to track the changed status of an object on the server

feat: add ETag to track the changed status of an object on the server #17

Workflow file for this run

name: Run Rust Linters
on:
workflow_dispatch:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lints:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install Dependencies
run: |
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install -y gcc curl pkg-config libssl-dev make
- name: Run Linters
run: make rust-lint