build: add test and build checks to workflows
All checks were successful
Test / checks (map[name:nightly]) (push) Successful in 3m34s
Test / checks (map[name:stable]) (push) Successful in 4m19s

This commit is contained in:
Paul Campbell 2024-09-21 22:07:04 +01:00
parent 7e82cf2946
commit 297e6de9d2
3 changed files with 39 additions and 6 deletions

View file

@ -4,16 +4,53 @@ on:
push:
branches:
- next
pull_request:
branches:
- main
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test:
checks:
runs-on: docker
strategy:
matrix:
toolchain:
- name: stable
- name: nightly
steps:
- name: Checkout
uses: actions/checkout@v4
- 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

View file

@ -11,9 +11,7 @@ file-format = { version = "0.25", features = ["reader-txt"] }
kxio = "1.2"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
ureq = "2.10"
[dev-dependencies]
assert2 = "0.3"

View file

@ -72,12 +72,10 @@ impl FileScanner for DefaultFileScanner {
.for_each(|marker| match marker {
Marker::Invalid(_) => {
errors += 1;
// TODO: (#6) Better error message
printer.println(marker.to_string());
}
Marker::Closed(_, _) => {
errors += 1;
// TODO: (#6) Better error message
printer.println(marker.to_string());
}
_ => {}