Compare commits
11 Commits
5a40ff8397
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
| ea4c338928 | |||
| 94db05e5ff | |||
| 87c97c741d | |||
| ce444a3f6f | |||
| b26dd9f41d | |||
| f2e6a48c9e | |||
| b9034de8a0 | |||
| d0227cc9e5 | |||
| f54b1b870a | |||
| b3d6862195 | |||
|
045fc90364
|
41
.forest-ci/workflows/build.yaml
Normal file
41
.forest-ci/workflows/build.yaml
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
name: Build Forest
|
||||||
|
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
env:
|
||||||
|
RUSTFLAGS: -D warnings
|
||||||
|
timeout_minutes: 30
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Build application
|
||||||
|
uses: rustlang/rust:nightly
|
||||||
|
run:
|
||||||
|
- export SQLX_OFFLINE=true
|
||||||
|
- cargo build --release
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
uses: rustlang/rust:nightly
|
||||||
|
run:
|
||||||
|
- cargo test
|
||||||
|
|
||||||
|
- name: Check code formatting
|
||||||
|
uses: rustlang/rust:nightly
|
||||||
|
run:
|
||||||
|
- cargo fmt -- --check
|
||||||
|
continue_on_error: true
|
||||||
|
|
||||||
|
- name: Run clippy lints
|
||||||
|
uses: rustlang/rust:nightly
|
||||||
|
run:
|
||||||
|
- rustup component add clippy
|
||||||
|
- cargo clippy -- -D warnings
|
||||||
|
continue_on_error: true
|
||||||
|
|
||||||
713
Cargo.lock
generated
713
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -13,7 +13,7 @@ dotenvy.workspace = true
|
|||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
uuid.workspace = true
|
uuid.workspace = true
|
||||||
|
|
||||||
rusty-s3 = "0.7"
|
rusty-s3 = "0.8"
|
||||||
url = "2.5"
|
url = "2.5"
|
||||||
kdl = "6.3"
|
kdl = "6.3"
|
||||||
walkdir = "2.5"
|
walkdir = "2.5"
|
||||||
|
|||||||
Reference in New Issue
Block a user