Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hakoerber committed Aug 25, 2024
2 parents 3aa3779 + 48f134e commit f5750f1
Show file tree
Hide file tree
Showing 7 changed files with 99 additions and 75 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Nix Flake Check

on: # yamllint disable-line rule:truthy
pull_request:
branches:
- master
push:
branches:
- master
- develop

jobs:
nix-flake-check:
name: Run Nix Flake Checks
runs-on: ubuntu-latest
environment: actions_build_environment
steps:
- uses: actions/checkout@main
- uses: cachix/install-nix-action@master
- run: nix --accept-flake-config flake check
92 changes: 43 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-repo-manager"
version = "0.7.17"
version = "0.7.18"
edition = "2021"

authors = [
Expand All @@ -22,7 +22,7 @@ repository = "https://github.com/hakoerber/git-repo-manager"

readme = "README.md"

rust-version = "1.70"
rust-version = "1.74"

license = "GPL-3.0-only"

Expand All @@ -41,7 +41,7 @@ path = "src/grm/main.rs"
version = "=0.8.19"

[dependencies.serde]
version = "=1.0.207"
version = "=1.0.209"
features = ["derive"]

[dependencies.git2]
Expand All @@ -51,7 +51,7 @@ version = "=0.19.0"
version = "=3.1.0"

[dependencies.clap]
version = "=4.4.18"
version = "=4.5.16"
features = ["derive", "cargo"]

[dependencies.console]
Expand All @@ -67,14 +67,14 @@ version = "=7.1.1"
version = "=0.9.34"

[dependencies.serde_json]
version = "=1.0.125"
version = "=1.0.127"

[dependencies.ureq]
version = "=2.10.1"
features = ["json"]

[dependencies.parse_link_header]
version = "=0.3.3"
version = "=0.4.0"

[dependencies.url-escape]
version = "=0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GRM — Git Repository Manager
# GRM — Git Repository Manager ![Nix Flake Check](https://github.com/hakoerber/git-repo-manager/workflows/Nix%20Flake%20Check/badge.svg)

GRM helps you manage git repositories in a declarative way. Configure your
repositories in a [TOML](https://toml.io/) or YAML file, GRM does the rest.
Expand Down
Loading

0 comments on commit f5750f1

Please sign in to comment.