mirror of
https://github.com/YGGverse/flarumdown.git
synced 2026-03-31 16:55:29 +00:00
setup workflow
This commit is contained in:
parent
e83d69a133
commit
6de74a3a82
3 changed files with 37 additions and 0 deletions
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
custom: https://yggverse.github.io/#donate
|
||||||
32
.github/workflows/linux.yml
vendored
Normal file
32
.github/workflows/linux.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
name: Linux
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
RUSTFLAGS: -Dwarnings
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
# https://github.com/actions/runner-images
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Update rustup
|
||||||
|
run: rustup update
|
||||||
|
- name: Update cargo
|
||||||
|
run: cargo update
|
||||||
|
- name: Run rustfmt
|
||||||
|
run: cargo fmt --all -- --check
|
||||||
|
- name: Run clippy
|
||||||
|
run: cargo clippy --all-targets
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --verbose
|
||||||
|
- name: Run tests
|
||||||
|
run: cargo test --verbose
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
# flarumdown
|
# flarumdown
|
||||||
|
|
||||||
|

|
||||||
|
[](https://deps.rs/repo/github/YGGverse/flarumdown)
|
||||||
|
[](https://crates.io/crates/flarumdown)
|
||||||
|
|
||||||
Flarum is down - read as Markdown
|
Flarum is down - read as Markdown
|
||||||
|
|
||||||
CLI tool for Flarum v2 that allows to export public DB into the Markdown format.
|
CLI tool for Flarum v2 that allows to export public DB into the Markdown format.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue