Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/embd_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Embd Check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v6
with:
lfs: true
- name: run embd status
run: cargo run -r -- status
2 changes: 2 additions & 0 deletions infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This repo is a set of re-usable components for projects of different languages. It's intended to be included in other projects with [embd](https://www.github.com/ptsouchlos/embd).

Edit

## Author

| [<img src="https://avatars0.githubusercontent.com/u/6591180?s=460&v=4" width="100"><br><sub>@ptsouchlos</sub>](https://github.com/ptsouchlos) |
Expand Down
3 changes: 3 additions & 0 deletions infra/rust/just/clippy.just
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
[group('dev')]
lint:
cargo clippy --all --tests -- -D warnings

echo:
echo "Run 'just lint' to run clippy"
3 changes: 3 additions & 0 deletions infra/rust/just/format.just
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
[group('dev')]
format:
cargo fmt --all

fmt-echo:
echo "Run 'just lint' to run clippy"
3 changes: 3 additions & 0 deletions infra/rust/just/shells.just
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"]
set shell := ["bash", "-c"]

shls-echo:
echo "Run 'just lint' to run clippy"
Loading