Compare commits

...

2 commits

Author SHA1 Message Date
35d0c0b4a2
Try installing pip for action
Some checks failed
CI / Formatting (push) Successful in 35s
CI / Clippy (push) Failing after 56s
CI / Build (push) Failing after 7s
CI / Test Rust (push) Failing after 59s
2025-02-23 03:42:00 -05:00
dca4806af8
No point having cargo check and build in the same pipeline 2025-02-23 03:39:49 -05:00

View file

@ -30,17 +30,6 @@ jobs:
- name: Run Clippy
run: cargo clippy -- -D warnings
check:
name: Check
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Check for Rust compilation errors
run: cargo check
build:
name: Build
runs-on: docker
@ -51,6 +40,8 @@ jobs:
uses: actions/setup-python@v5
with:
cache: pip
- name: Install pip
run: python3 -m ensurepip
- name: Set up Python environment
run: python3 -m pip install -r requirements.txt
- name: Set up Rust