pt/.gitea/workflows/cargo.yaml

49 lines
1.7 KiB
YAML
Raw Normal View History

2024-01-17 14:15:24 +01:00
name: cargo devel CI
2024-01-17 00:31:43 +01:00
on:
push:
branches:
2024-01-17 01:14:49 +01:00
- '**'
2024-01-17 14:44:20 +01:00
# - '!master'
2024-01-10 21:43:03 +01:00
jobs:
format:
2024-01-15 23:28:01 +01:00
name: cargo CI
2024-01-10 21:43:03 +01:00
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
2024-01-17 01:14:49 +01:00
- name: get repo
uses: actions/checkout@v4
- name: install rust
2024-02-09 18:39:08 +01:00
uses: https://github.com/dtolnay/rust-toolchain@stable
2024-01-17 14:00:43 +01:00
- name: install additional rust things
2024-02-16 16:35:44 +01:00
run: |
rustup component add rustfmt
rustup component add clippy
2024-05-12 17:36:26 +02:00
- name: install python
run: apt update && apt install libpython3-dev -y
2024-01-17 01:14:49 +01:00
- name: config custom registry
run: |
mkdir -p ~/.cargo/
2024-01-17 14:15:24 +01:00
echo "" > ~/.cargo/config.toml
echo "[registry]" >> ~/.cargo/config.toml
echo 'cscherr = "cscherr"' >> ~/.cargo/config.toml
echo '[registries.cscherr]' >> ~/.cargo/config.toml
echo 'index = "https://git.cscherr.de/PlexSheep/_cargo-index.git"' >> ~/.cargo/config.toml
2024-01-17 01:14:49 +01:00
cat ~/.cargo/config.toml
2024-02-16 16:12:51 +01:00
- name: cargo clippy check
2024-03-03 14:02:19 +01:00
run: cargo clippy --all-features --all-targets --workspace
2024-02-16 16:12:51 +01:00
- name: cargo clippy fix
2024-03-03 14:02:19 +01:00
run: cargo clippy --fix --all-features --all-targets --workspace
2024-01-17 01:14:49 +01:00
- name: cargo fmt
run: cargo fmt --all
- name: cargo test
2024-05-12 17:26:06 +02:00
run: cargo test --all-features --all-targets --workspace && cargo test --all-features --workspace --doc
2024-01-17 01:14:49 +01:00
- name: commit back to repository
2024-02-09 18:39:08 +01:00
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
2024-01-10 21:43:03 +01:00
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
2024-01-15 23:28:01 +01:00
commit_message: automatic cargo CI changes