Skip to content

Commit

Permalink
Initial commit: v0.1.0
Browse files Browse the repository at this point in the history
This is a minimum viable product for hyprland-autodim that works for my
use case but lacks any sort of customization for end-users.
  • Loading branch information
donovanglover committed Jul 25, 2023
0 parents commit 0b70257
Show file tree
Hide file tree
Showing 7 changed files with 890 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Cargo Build & Test

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 0b70257

Please sign in to comment.