build: add test and build checks to workflows
This commit is contained in:
parent
7e82cf2946
commit
297e6de9d2
3 changed files with 39 additions and 6 deletions
|
@ -4,16 +4,53 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- next
|
- next
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
test:
|
checks:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
toolchain:
|
||||||
|
- name: stable
|
||||||
|
- name: nightly
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Check TODOs
|
- name: Check TODOs
|
||||||
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1
|
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.0.0
|
||||||
|
|
||||||
|
- name: Machete
|
||||||
|
uses: https://git.kemitix.net/kemitix/rust@v2.1.0
|
||||||
|
with:
|
||||||
|
args: ${{ matrix.toolchain.name }} cargo machete
|
||||||
|
|
||||||
|
- name: Format
|
||||||
|
uses: https://git.kemitix.net/kemitix/rust@v2.1.0
|
||||||
|
with:
|
||||||
|
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
||||||
|
|
||||||
|
- name: Clippy
|
||||||
|
uses: https://git.kemitix.net/kemitix/rust@v2.1.0
|
||||||
|
with:
|
||||||
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: https://git.kemitix.net/kemitix/rust@v2.1.0
|
||||||
|
with:
|
||||||
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
uses: https://git.kemitix.net/kemitix/rust@v2.1.0
|
||||||
|
with:
|
||||||
|
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test
|
||||||
|
|
|
@ -11,9 +11,7 @@ file-format = { version = "0.25", features = ["reader-txt"] }
|
||||||
kxio = "1.2"
|
kxio = "1.2"
|
||||||
regex = "1.10"
|
regex = "1.10"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
|
||||||
tokio = { version = "1.37", features = ["full"] }
|
tokio = { version = "1.37", features = ["full"] }
|
||||||
ureq = "2.10"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert2 = "0.3"
|
assert2 = "0.3"
|
||||||
|
|
|
@ -72,12 +72,10 @@ impl FileScanner for DefaultFileScanner {
|
||||||
.for_each(|marker| match marker {
|
.for_each(|marker| match marker {
|
||||||
Marker::Invalid(_) => {
|
Marker::Invalid(_) => {
|
||||||
errors += 1;
|
errors += 1;
|
||||||
// TODO: (#6) Better error message
|
|
||||||
printer.println(marker.to_string());
|
printer.println(marker.to_string());
|
||||||
}
|
}
|
||||||
Marker::Closed(_, _) => {
|
Marker::Closed(_, _) => {
|
||||||
errors += 1;
|
errors += 1;
|
||||||
// TODO: (#6) Better error message
|
|
||||||
printer.println(marker.to_string());
|
printer.println(marker.to_string());
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
|
|
Loading…
Reference in a new issue