Compare commits

...

2 commits

Author SHA1 Message Date
Renovate Bot
ddf04f3aa8 chore(deps): woodpecker update docker.io/rust docker tag to v1.80.0
Some checks failed
Rust / build (push) Failing after 2s
ci/woodpecker/push/woodpecker Pipeline was successful
2024-07-30 07:12:44 +01:00
35d73cc97d build: add forgejo workflow push-next
Some checks failed
Rust / build (push) Failing after 2s
ci/woodpecker/push/woodpecker Pipeline was successful
2024-07-30 07:12:29 +01:00
2 changed files with 45 additions and 1 deletions

View file

@ -0,0 +1,44 @@
name: Rust
on:
push:
branches: ["next"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Format
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: fmt --all -- --check
- name: Machete
uses: bnjbvr/cargo-machete@v0.6.2
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: clippy
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: build
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v0.3.1
with:
args: test --no-fail-fast
- name: Integration
run: ./test.sh

View file

@ -1,5 +1,5 @@
variables: variables:
- &rust_image "docker.io/rust:1.79.0" - &rust_image "docker.io/rust:1.80.0"
- &slow_check_paths - &slow_check_paths
- path: - path:
# rust source code # rust source code