Compare commits
No commits in common. "35d0c0b4a223a1001d312804db06110c55bf2e9d" and "5ab5aa0301b5eaf0c6ae6943313d6be4e25498bd" have entirely different histories.
35d0c0b4a2
...
5ab5aa0301
1 changed files with 11 additions and 2 deletions
|
|
@ -30,6 +30,17 @@ jobs:
|
||||||
- name: Run Clippy
|
- name: Run Clippy
|
||||||
run: cargo clippy -- -D warnings
|
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:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
@ -40,8 +51,6 @@ jobs:
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
cache: pip
|
cache: pip
|
||||||
- name: Install pip
|
|
||||||
run: python3 -m ensurepip
|
|
||||||
- name: Set up Python environment
|
- name: Set up Python environment
|
||||||
run: python3 -m pip install -r requirements.txt
|
run: python3 -m pip install -r requirements.txt
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue