ci install python
cargo devel CI / cargo CI (push) Failing after 57s Details

This commit is contained in:
Christoph J. Scherr 2024-03-03 14:12:57 +01:00
parent c4921ec364
commit 23cfab7644
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,10 @@ jobs:
run: cargo clippy --fix --all-features --all-targets --workspace run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt - name: cargo fmt
run: cargo fmt --all run: cargo fmt --all
- name: install python
uses: https://github.com/actions/setup-python@v5
with:
python-version: '3.10'
- name: cargo test - name: cargo test
run: cargo test --all-features --all-targets --workspace run: cargo test --all-features --all-targets --workspace
- name: commit back to repository - name: commit back to repository

View File

@ -37,6 +37,10 @@ jobs:
run: cargo clippy --fix --all-features --all-targets --workspace run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt - name: cargo fmt
run: cargo fmt --all run: cargo fmt --all
- name: install python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: cargo test - name: cargo test
run: cargo test --all-features --all-targets --workspace run: cargo test --all-features --all-targets --workspace
- name: commit back to repository - name: commit back to repository