ci(.gitea/workflows/..): Test simple ci
Some checks failed
Continuous Integration / Rust Checks (map[args:--all -- --check --color always command:fmt]) (push) Failing after 6m42s
Continuous Integration / Rust Checks (map[args:--release command:build]) (push) Has been cancelled
Continuous Integration / Rust Checks (map[args:--all-features --workspace -- -D warnings command:clippy]) (push) Has been cancelled
Some checks failed
Continuous Integration / Rust Checks (map[args:--all -- --check --color always command:fmt]) (push) Failing after 6m42s
Continuous Integration / Rust Checks (map[args:--release command:build]) (push) Has been cancelled
Continuous Integration / Rust Checks (map[args:--all-features --workspace -- -D warnings command:clippy]) (push) Has been cancelled
This commit is contained in:
parent
ce65897102
commit
7d3a2938a7
36
.gitea/workflows/rust_ci.yml
Normal file
36
.gitea/workflows/rust_ci.yml
Normal file
@ -0,0 +1,36 @@
|
||||
name: Continuous Integration
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- "**/README.md"
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
rust-checks:
|
||||
name: Rust Checks
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
action:
|
||||
- command: build
|
||||
args: --release
|
||||
- command: fmt
|
||||
args: --all -- --check --color always
|
||||
- command: clippy
|
||||
args: --all-features --workspace -- -D warnings
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Rust
|
||||
uses: esp-rs/xtensa-toolchain@v1.5
|
||||
with:
|
||||
default: true
|
||||
buildtargets: esp32
|
||||
ldproxy: false
|
||||
- name: Enable caching
|
||||
uses: Swatinem/rust-cache@v2
|
||||
- name: Run command
|
||||
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}
|
Loading…
Reference in New Issue
Block a user