Comment out extra jobs until I get them working
This commit is contained in:
parent
032aa3540b
commit
f687105dc9
1 changed files with 37 additions and 37 deletions
|
@ -18,32 +18,32 @@ jobs:
|
||||||
- name: Check Rust formatting
|
- name: Check Rust formatting
|
||||||
run: cargo fmt --all -- --check
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
clippy:
|
# clippy:
|
||||||
name: Clippy
|
# name: Clippy
|
||||||
runs-on: docker
|
# runs-on: docker
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
# - name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
# uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
# with:
|
||||||
toolchain: stable
|
# toolchain: stable
|
||||||
components: clippy
|
# components: clippy
|
||||||
- name: Run Clippy
|
# - name: Run Clippy
|
||||||
run: cargo clippy -- -D warnings
|
# run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
check:
|
# check:
|
||||||
name: Check
|
# name: Check
|
||||||
runs-on: docker
|
# runs-on: docker
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
# - name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
# uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
# with:
|
||||||
toolchain: stable
|
# toolchain: stable
|
||||||
- name: Check for Rust compilation errors
|
# - name: Check for Rust compilation errors
|
||||||
run: cargo check
|
# run: cargo check
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
|
@ -64,15 +64,15 @@ jobs:
|
||||||
- name: Build Rust code
|
- name: Build Rust code
|
||||||
run: maturin develop
|
run: maturin develop
|
||||||
|
|
||||||
test-rust:
|
# test-rust:
|
||||||
name: Test Rust
|
# name: Test Rust
|
||||||
runs-on: docker
|
# runs-on: docker
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
# - name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
# uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
# with:
|
||||||
toolchain: stable
|
# toolchain: stable
|
||||||
- name: Run Rust tests
|
# - name: Run Rust tests
|
||||||
run: cargo test
|
# run: cargo test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue