Compare commits
5 commits
v0.14.0-rc
...
main
Author | SHA1 | Date | |
---|---|---|---|
8a877ddf63 | |||
313db591b2 | |||
2842b6a55a | |||
|
419b3deab2 | ||
|
b5c3c2f3c1 |
6 changed files with 9 additions and 10 deletions
|
@ -22,13 +22,13 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
- name: Run release-plz release-pr
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
|
||||
env:
|
||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||
- name: Run release-plz release
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
|
||||
env:
|
||||
|
|
|
@ -27,26 +27,26 @@ jobs:
|
|||
uses: kemitix/todo-checker@v1.2.0
|
||||
|
||||
- name: Machete
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: ${{ matrix.toolchain.name }} cargo machete
|
||||
|
||||
- name: Format
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
||||
|
||||
- name: Clippy
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset clippy
|
||||
|
||||
- name: Build
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset build
|
||||
|
||||
- name: Test
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.4.1
|
||||
uses: https://git.kemitix.net/kemitix/rust@v2.5.0
|
||||
with:
|
||||
args: ${{ matrix.toolchain.name }} cargo hack --feature-powerset test
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -29,3 +29,4 @@ data/
|
|||
|
||||
mutants.out/
|
||||
mutants.out.old/
|
||||
.idea/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/rust:1.82.0-bookworm
|
||||
FROM docker.io/rust:1.83.0-bookworm
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y libdbus-1-dev && \
|
||||
|
|
|
@ -66,7 +66,6 @@ impl git::ForgeLike for ForgeJo {
|
|||
return Ok(Status::Pending);
|
||||
};
|
||||
let combined_status = response.json::<CombinedStatus>().await.unwrap_or_default();
|
||||
eprintln!("combined_status: {:?}", combined_status);
|
||||
let status = match combined_status.state {
|
||||
ForgejoState::Success => Status::Pass,
|
||||
ForgejoState::Pending | ForgejoState::Blank => Status::Pending,
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["config:recommended"],
|
||||
"baseBranches": ["dev"],
|
||||
"packageRules": [
|
||||
{
|
||||
"matchManagers": ["cargo"],
|
||||
|
|
Loading…
Reference in a new issue