Compare commits

..

No commits in common. "810bbf85dea621b06d2b43806c265cc2ef9d8831" and "75feb7b2b022baf03fa47bd51a343034f7c9e68a" have entirely different histories.

2 changed files with 8 additions and 2 deletions

View file

@ -36,8 +36,10 @@ jobs:
run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt
run: cargo fmt --all
- name: install python
run: apt update && apt install libpython3-dev -y
- name: cargo test
run: cargo test --all-features --all-targets --workspace && cargo test --all-features --workspace --doc
run: cargo test --all-features --all-targets --workspace
- name: commit back to repository
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with:

View file

@ -37,8 +37,12 @@ jobs:
run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt
run: cargo fmt --all
- name: install python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: cargo test
run: cargo test --all-features --all-targets --workspace && cargo test --all-features --workspace --doc
run: cargo test --all-features --all-targets --workspace
- name: commit back to repository
uses: stefanzweifel/git-auto-commit-action@v5
with: