Compare commits
No commits in common. "fd50d22ad4c1a3918878dba5d7c038f24b6fbdc3" and "f2cb66ec298828d5a48d94cc82cf367f5ed69f34" have entirely different histories.
fd50d22ad4
...
f2cb66ec29
31
.github/workflows/rust.yml
vendored
Normal file
31
.github/workflows/rust.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
profile: minimal
|
||||||
|
override: true
|
||||||
|
components: rustfmt, clippy
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
name: Check format
|
||||||
|
with:
|
||||||
|
command: fmt
|
||||||
|
args: --all -- --check
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
name: Run clippy
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
args: --all-targets --locked -- -D warnings
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
name: Run tests
|
||||||
|
with:
|
||||||
|
command: test
|
@ -1,6 +1,5 @@
|
|||||||
# ALMA - Arch Linux Mobile Appliance
|
# ALMA - Arch Linux Mobile Appliance
|
||||||

|
|
||||||
---
|
|
||||||
Almost every live Linux distribution out there is meant for a specific purpose, whether it's data
|
Almost every live Linux distribution out there is meant for a specific purpose, whether it's data
|
||||||
rescue, privacy, penetration testing or anything else. There are some more generic distributions
|
rescue, privacy, penetration testing or anything else. There are some more generic distributions
|
||||||
but all of them are based on squashfs, meaning that changes don't persist reboots.
|
but all of them are based on squashfs, meaning that changes don't persist reboots.
|
||||||
@ -34,6 +33,7 @@ date without having to boot it. Encrypting the root partition is as easy as prov
|
|||||||
- [Similar projects](#similar-projects)
|
- [Similar projects](#similar-projects)
|
||||||
- [Useful Resources](#useful-resources)
|
- [Useful Resources](#useful-resources)
|
||||||
---
|
---
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
You can either build the project using cargo build or install the `alma-aur` package.
|
You can either build the project using cargo build or install the `alma-aur` package.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user