git-next/.forgejo/workflows/push-next.yml
Renovate Bot 866833667a
All checks were successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
Rust / build (pull_request) Successful in 1m55s
ci/woodpecker/pull_request_closed/cron-docker-builder Pipeline was successful
ci/woodpecker/pull_request_closed/push-next Pipeline was successful
ci/woodpecker/pull_request_closed/tag-created Pipeline was successful
chore(deps): update kemitix/rust action to v0.3.0
2024-06-13 18:45:31 +00:00

38 lines
715 B
YAML

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.0
with:
args: fmt --all -- --check
- name: Clippy
uses: https://git.kemitix.net/kemitix/rust@v0.3.0
with:
args: clippy -- -D warnings
- name: Build
uses: https://git.kemitix.net/kemitix/rust@v0.3.0
with:
args: build
- name: Test
uses: https://git.kemitix.net/kemitix/rust@v0.3.0
with:
args: test