2024-01-23 21:38:11 +01:00
|
|
|
name: cargo devel CI
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
# - '!master'
|
|
|
|
|
|
|
|
jobs:
|
2024-02-09 18:37:14 +01:00
|
|
|
format:
|
2024-01-23 21:38:11 +01:00
|
|
|
name: cargo CI
|
|
|
|
permissions:
|
|
|
|
# Give the default GITHUB_TOKEN write permission to commit and push the
|
|
|
|
# added or changed files to the repository.
|
|
|
|
contents: write
|
|
|
|
steps:
|
|
|
|
- name: get repo
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: install rust
|
2024-02-09 18:37:14 +01:00
|
|
|
uses: https://github.com/dtolnay/rust-toolchain@stable
|
2024-01-23 21:38:11 +01:00
|
|
|
- name: install additional rust things
|
|
|
|
run: rustup component add rustfmt
|
|
|
|
- name: config custom registry
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.cargo/
|
|
|
|
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
|
|
|
|
cat ~/.cargo/config.toml
|
|
|
|
- name: cargo check
|
|
|
|
run: cargo check --all-features --all-targets
|
|
|
|
- name: cargo fix
|
|
|
|
run: cargo fix --all-features --all-targets
|
|
|
|
- name: cargo fmt
|
|
|
|
run: cargo fmt --all
|
|
|
|
- name: cargo test
|
|
|
|
run: cargo test --all-features --all-targets
|
|
|
|
- name: commit back to repository
|
2024-02-09 18:37:14 +01:00
|
|
|
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
|
2024-01-23 21:38:11 +01:00
|
|
|
with:
|
|
|
|
# Optional. Commit message for the created commit.
|
|
|
|
# Defaults to "Apply automatic changes"
|
|
|
|
commit_message: automatic cargo CI changes
|