Compare commits
4 commits
renovate/g
...
main
Author | SHA1 | Date | |
---|---|---|---|
284627273b | |||
77336629af | |||
|
b526e3d9d8 | ||
7ca7d94781 |
4 changed files with 17 additions and 5 deletions
|
@ -19,7 +19,7 @@ jobs:
|
|||
|
||||
container:
|
||||
image:
|
||||
git.kemitix.net/kemitix/rust:v3.1.0
|
||||
git.kemitix.net/kemitix/rust:v4.0.1
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
|
||||
container:
|
||||
image:
|
||||
git.kemitix.net/kemitix/rust:v3.1.0
|
||||
git.kemitix.net/kemitix/rust:v4.0.1
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
@ -31,7 +31,13 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: Ignored Files
|
||||
run: check-for-ignored
|
||||
run: |
|
||||
IGNORED=$(git ls-files --cached -i --exclude-standard)
|
||||
if [ -n "$IGNORED" ]
|
||||
then
|
||||
echo "Ignored files present:\n$IGNORED"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- name: Check TODOs (Origin)
|
||||
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.3.0
|
||||
|
|
|
@ -13,7 +13,7 @@ clap = {version = "4.5", features = ["derive"]}
|
|||
color-eyre = "0.6"
|
||||
file-format = { version = "0.26", features = ["reader-txt"] }
|
||||
ignore = "0.4"
|
||||
kxio = "5.0"
|
||||
kxio = "5.1"
|
||||
regex = "1.10"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
|
6
justfile
6
justfile
|
@ -10,6 +10,12 @@ build:
|
|||
# cargo test --example get
|
||||
cargo mutants --jobs 4
|
||||
|
||||
test-in-docker:
|
||||
docker run --rm -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest cargo test
|
||||
|
||||
shell-in-docker:
|
||||
docker run --rm -it -v $PWD:/app/ git.kemitix.net/kemitix/rust:latest bash
|
||||
|
||||
self-test:
|
||||
just test $PWD forgejo-todo-checker
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue