Skip to content

chore: add badge

chore: add badge #8

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.3.3
with:
name: notify-send-win
path: target/release/notify-send-win.exe