Skip to content

Commit

Permalink
Add more metadata; render README.md with Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Jan 30, 2024
1 parent 966cb6d commit ae39213
Show file tree
Hide file tree
Showing 9 changed files with 1,688 additions and 62 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Render

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write

steps:
- uses: actions/checkout@v3

- name: Render list
run: make render

- uses: stefanzweifel/[email protected]
with:
commit_message: Commit list
commit_user_name: Idiomatic Rust Bot
commit_user_email: [email protected]
commit_author: Idiomatic Rust Bot <[email protected]>
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: render
render:
cargo run --manifest-path=render/Cargo.toml
134 changes: 72 additions & 62 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions render/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
271 changes: 271 additions & 0 deletions render/Cargo.lock

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

13 changes: 13 additions & 0 deletions render/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "render"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
askama = "0.12.1"
indexmap = "2.2.1"
itertools = "0.12.1"
serde = { version = "1.0.196", features = ["serde_derive"] }
serde_json = "1.0.113"
Loading

0 comments on commit ae39213

Please sign in to comment.