build: upgrade kemitix/rust v3
This commit is contained in:
parent
a7083e2e7e
commit
fec502efef
2 changed files with 64 additions and 22 deletions
38
.forgejo/workflows/push-main.yml
Normal file
38
.forgejo/workflows/push-main.yml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: Release Please
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-plz:
|
||||||
|
name: Release-plz
|
||||||
|
runs-on: docker
|
||||||
|
|
||||||
|
container:
|
||||||
|
image:
|
||||||
|
git.kemitix.net/kemitix/rust:v3.0.0
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Run release-plz release-pr
|
||||||
|
run: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
|
||||||
|
env:
|
||||||
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||||
|
|
||||||
|
- name: Run release-plz release
|
||||||
|
run: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
|
||||||
|
env:
|
||||||
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
@ -1,10 +1,13 @@
|
||||||
name: Rust
|
name: Test
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["next"]
|
branches:
|
||||||
|
- next
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["main"]
|
branches:
|
||||||
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
@ -13,6 +16,10 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
||||||
|
container:
|
||||||
|
image:
|
||||||
|
git.kemitix.net/kemitix/rust:v3.0.0
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolchain:
|
toolchain:
|
||||||
|
@ -23,30 +30,27 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Format
|
- name: Check TODOs
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v2.6.0
|
uses: https://git.kemitix.net/kemitix/forgejo-todo-checker@v1.3.0
|
||||||
with:
|
|
||||||
args: ${{ matrix.toolchain.name }} cargo fmt --all -- --check
|
|
||||||
|
|
||||||
# - name: Machete
|
- name: Machete
|
||||||
# uses: https://github.com/bnjbvr/cargo-machete@v0.6.2
|
run: cargo +${{ matrix.toolchain.name }} machete
|
||||||
|
|
||||||
|
- name: Format
|
||||||
|
run: cargo +${{ matrix.toolchain.name }} fmt --all --check
|
||||||
|
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v2.6.0
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset clippy
|
||||||
with:
|
|
||||||
args: ${{ matrix.toolchain.name }} cargo clippy
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v2.6.0
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset build
|
||||||
with:
|
|
||||||
args: ${{ matrix.toolchain.name }} cargo build
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v2.6.0
|
run: cargo +${{ matrix.toolchain.name }} hack --feature-powerset test
|
||||||
with:
|
|
||||||
args: ${{ matrix.toolchain.name }} cargo test --no-fail-fast
|
|
||||||
|
|
||||||
- name: Integration
|
- name: Integration
|
||||||
uses: https://git.kemitix.net/kemitix/rust@v2.6.0
|
run: ./test.sh
|
||||||
with:
|
|
||||||
args: ./test.sh
|
- name: Mutations
|
||||||
|
run: cargo +${{ matrix.toolchain.name }} mutants -vV --in-place
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue